Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,9 @@ protected void configure(HttpClientTestOptions.Builder optionsBuilder) {
return attributes;
});

optionsBuilder.setTestConnectionFailure(false);
optionsBuilder.setSpanEndsAfterType(null);

// Play HTTP client uses AsyncHttpClient internally which does not support HTTP 1.1 pipelining
// nor waiting for connection pool slots to free up. Therefore making a single connection test
// would require manually sequencing the connections, which is not meaningful for a high
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,9 @@ protected void configure(HttpClientTestOptions.Builder optionsBuilder) {
optionsBuilder.setTestRedirects(false);
optionsBuilder.setTestReadTimeout(false);

optionsBuilder.setTestConnectionFailure(false);
optionsBuilder.setSpanEndsAfterType(null);

// Play HTTP client uses AsyncHttpClient internally which does not support HTTP 1.1 pipelining
// nor waiting for connection pool slots to free up. Therefore making a single connection test
// would require manually sequencing the connections, which is not meaningful for a high
Expand Down
Loading