Reorganized query and path parameters constants

This commit is contained in:
Luca Frosini 2022-07-20 12:09:31 +02:00
parent af76f9ff03
commit eb42cc76db
1 changed files with 1 additions and 1 deletions

View File

@ -225,7 +225,7 @@ public class ResourceRegistryContextClientImpl implements ResourceRegistryContex
UUID uuid = contextCache.getUUIDByFullName(contextFullName);
Context context = null;
if(uuid == null) {
String contextJson = readFromServer(AccessPath.CURRENT_CONTEXT);
String contextJson = readFromServer(ContextPath.CURRENT_CONTEXT_PATH_PART);
try {
context = ElementMapper.unmarshal(Context.class, contextJson);
} catch (IOException e) {