Repository: stratos Updated Branches: refs/heads/stratos-4.1.x a6665bb90 -> 2a425fdf4
Revert "Update the AS registry manager" This reverts commit e64081f7944dadced190054eb44f8d1dafe0f892. Project: http://git-wip-us.apache.org/repos/asf/stratos/repo Commit: http://git-wip-us.apache.org/repos/asf/stratos/commit/2a425fdf Tree: http://git-wip-us.apache.org/repos/asf/stratos/tree/2a425fdf Diff: http://git-wip-us.apache.org/repos/asf/stratos/diff/2a425fdf Branch: refs/heads/stratos-4.1.x Commit: 2a425fdf42108b9bf6218c9bc71eaae42595f6b6 Parents: 7a5e555 Author: gayangunarathne <[email protected]> Authored: Sun Dec 6 13:21:47 2015 +0530 Committer: gayangunarathne <[email protected]> Committed: Sun Dec 6 13:22:38 2015 +0530 ---------------------------------------------------------------------- .../apache/stratos/autoscaler/registry/RegistryManager.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/stratos/blob/2a425fdf/components/org.apache.stratos.autoscaler/src/main/java/org/apache/stratos/autoscaler/registry/RegistryManager.java ---------------------------------------------------------------------- diff --git a/components/org.apache.stratos.autoscaler/src/main/java/org/apache/stratos/autoscaler/registry/RegistryManager.java b/components/org.apache.stratos.autoscaler/src/main/java/org/apache/stratos/autoscaler/registry/RegistryManager.java index 343b76a..925c4ff 100644 --- a/components/org.apache.stratos.autoscaler/src/main/java/org/apache/stratos/autoscaler/registry/RegistryManager.java +++ b/components/org.apache.stratos.autoscaler/src/main/java/org/apache/stratos/autoscaler/registry/RegistryManager.java @@ -85,7 +85,7 @@ public class RegistryManager { return instance; } - private synchronized Object retrieve(String resourcePath) { + private Object retrieve(String resourcePath) { try { Resource resource = registryService.get(resourcePath); return resource.getContent(); @@ -99,7 +99,7 @@ public class RegistryManager { } } - private synchronized void delete(String resourcePath) { + private void delete(String resourcePath) { try { registryService.beginTransaction(); registryService.delete(resourcePath); @@ -138,7 +138,7 @@ public class RegistryManager { * @param dataObj object to be persisted. * @param resourcePath resource path to be persisted. */ - private synchronized void persist(Object dataObj, String resourcePath) throws AutoScalerException { + private void persist(Object dataObj, String resourcePath) throws AutoScalerException { try { registryService.beginTransaction();
