diff --git a/distro/changelog.xml b/distro/changelog.xml index ad4392a..c2c5411 100644 --- a/distro/changelog.xml +++ b/distro/changelog.xml @@ -1,7 +1,10 @@ - + + Added HAProxy discovery support #8757 + + Removed common-generic-clients, common-gcube-calls and common-fw-clients from dependencies The client is now a generic http-client (using HTTPCall class provided in API) autoquery th old is to get resource-registry instance. It is not implement as gcube-proxy anymore. Added exists() method which uses HEAD HTTP method to get existence from Resource Registry diff --git a/src/main/java/org/gcube/informationsystem/resourceregistry/client/ResourceRegistryClientFactory.java b/src/main/java/org/gcube/informationsystem/resourceregistry/client/ResourceRegistryClientFactory.java index 76a625e..a7e64ce 100644 --- a/src/main/java/org/gcube/informationsystem/resourceregistry/client/ResourceRegistryClientFactory.java +++ b/src/main/java/org/gcube/informationsystem/resourceregistry/client/ResourceRegistryClientFactory.java @@ -78,7 +78,7 @@ public class ResourceRegistryClientFactory { throw new Exception("No ResourceRegistry Proxy Found"); } } catch (Exception e) { - logger.debug("{}. Trying to look for the Service Endpoint.", e.getMessage()); + logger.debug("{}. Looking for RunningInstance.", e.getMessage()); SimpleQuery serviceQuery = queryForService(); addresses = ICFactory.client().submit(serviceQuery); }