fix intermittent error with CDS test

This commit is contained in:
craig mcclendon
2024-10-29 14:51:10 -05:00
parent 48a141b749
commit 04de3e738f

View File

@@ -88,7 +88,7 @@ class CdsHooksServletIT implements IServerSupport {
private Boolean hasCdsServices() throws IOException {
var response = callCdsServicesDiscovery();
return response.getEntity().getContentLength() > 21 || response.getEntity().isChunked();
return response.getEntity().getContentLength() > 25 || response.getEntity().isChunked();
}
private CloseableHttpResponse callCdsServicesDiscovery() {