finally track down and fix the node exists problem with not deleting noop requests

This commit is contained in:
fjy 2014-07-31 13:56:29 -07:00
parent 32bd7003ec
commit 1c4d8c55dc
1 changed files with 2 additions and 1 deletions

View File

@ -26,7 +26,8 @@ public class SegmentChangeRequestNoop implements DataSegmentChangeRequest
@Override
public void go(DataSegmentChangeHandler handler, DataSegmentChangeCallback callback)
{
// do nothing
// just execute the callback and do nothing else
callback.execute();
}
@Override