mirror of
https://github.com/wahyd4/pinpoint.git
synced 2026-08-16 00:05:57 +10:00
fix typos again
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user