Skip to content

Commit

Permalink
merged with latest codebase
Browse files Browse the repository at this point in the history
  • Loading branch information
Sheetal Parade committed May 17, 2012
1 parent 289b5fb commit b2d793a
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
import org.slf4j.LoggerFactory;

import com.nokia.dempsy.config.ClusterId;
import com.nokia.dempsy.internal.util.SafeString;
import com.nokia.dempsy.mpcluster.MpApplication;
import com.nokia.dempsy.mpcluster.MpCluster;
import com.nokia.dempsy.mpcluster.MpClusterException;
Expand Down Expand Up @@ -524,7 +525,7 @@ public TS getSlotInformation() throws MpClusterException
byte[] slot = null;
try
{
slot = zk.get().getData(slotPath.path, true, null);
slot = zkref.get().getData(slotPath.path, true, null);
}
catch(Exception e)
{
Expand Down Expand Up @@ -554,7 +555,7 @@ public void setSlotInformation(TS info) throws MpClusterException
}
try
{
zk.get().setData(slotPath.path, slotData, -1);
zkref.get().setData(slotPath.path, slotData, -1);
}
catch(Exception e)
{
Expand Down

0 comments on commit b2d793a

Please sign in to comment.