Skip to content

Commit

Permalink
Attempt to fix something 10
Browse files Browse the repository at this point in the history
  • Loading branch information
nck-mlcnv committed Jul 5, 2024
1 parent 7ff7acd commit b613a47
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,14 @@ public class SPARQLProtocolWorkerTest {
@RegisterExtension
public static WireMockExtension wm = WireMockExtension.newInstance()
.options(new WireMockConfiguration()
.useChunkedTransferEncoding(Options.ChunkedEncodingPolicy.NEVER)
// .useChunkedTransferEncoding(Options.ChunkedEncodingPolicy.NEVER)
.dynamicPort()
.maxRequestJournalEntries(10)
.maxLoggedResponseSize(10)
.maxRequestJournalEntries(1000)
.maxLoggedResponseSize(1000)
.notifier(new ConsoleNotifier(false))
.containerThreads(10)
.asynchronousResponseEnabled(true)
.asynchronousResponseThreads(10)
.containerThreads(8)
.asynchronousResponseEnabled(false)
.asynchronousResponseThreads(8)
.timeout(50000))
.failOnUnmatchedRequests(true)
.build();
Expand Down

0 comments on commit b613a47

Please sign in to comment.