Merge remote-tracking branch 'origin/3.1.x' into 4.0.x

This commit is contained in:
Olga MaciaszekSharma
2023-11-13 13:22:13 +01:00
2 changed files with 2 additions and 2 deletions

View File

@@ -25,7 +25,7 @@ Extract the files into the JDK/jre/lib/security folder for whichever version of
== Building
:jdkversion: 17
:jdkversion: 1.8
=== Basic Compile and Test

View File

@@ -95,7 +95,7 @@ public class BlockingLoadBalancerClient implements LoadBalancerClient {
public <T> T execute(String serviceId, ServiceInstance serviceInstance, LoadBalancerRequest<T> request)
throws IOException {
if (serviceInstance == null) {
throw new IllegalArgumentException("Service Instance cannot be null");
throw new IllegalArgumentException("Service Instance cannot be null, serviceId: " + serviceId);
}
DefaultResponse defaultResponse = new DefaultResponse(serviceInstance);
Set<LoadBalancerLifecycle> supportedLifecycleProcessors = getSupportedLifecycleProcessors(serviceId);