Fixed http method one exist API

This commit is contained in:
Luca Frosini 2022-02-09 12:15:00 +01:00
parent 9577ba0b13
commit dde4d011d2
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ public class ResourceRegistrySchemaClientImpl implements ResourceRegistrySchemaC
parameters.put(TypePath.POLYMORPHIC_PARAM, Boolean.FALSE.toString());
gxHTTPStringRequest.queryParams(parameters);
HttpURLConnection httpURLConnection = gxHTTPStringRequest.get();
HttpURLConnection httpURLConnection = gxHTTPStringRequest.head();
HTTPUtility.getResponse(String.class, httpURLConnection);
return true;