fix typos again

This commit is contained in:
Taehee Kim
2015-09-25 07:06:02 +09:00
parent c7203473b4
commit e190880940
@@ -53,7 +53,7 @@ import java.util.*;
@Service
public class AgentServiceImpl implements AgentService {
private static final long DEFUALT_FUTURE_TIMEOUT = 3000;
private static final long DEFAULT_FUTURE_TIMEOUT = 3000;
@Autowired
private AgentInfoService agentInfoService;
@@ -234,7 +234,7 @@ public class AgentServiceImpl implements AgentService {
}
private PinpointRouteResponse getResponse(Future<ResponseMessage> future, long timeout) {
boolean completed = future.await(DEFUALT_FUTURE_TIMEOUT);
boolean completed = future.await(DEFAULT_FUTURE_TIMEOUT);
if (completed) {
DefaultPinpointRouteResponse response = new DefaultPinpointRouteResponse(future.getResult().getMessage());
response.parse(commandDeserializerFactory);