in src/main/java/com/googlesource/gerrit/plugins/replication/pull/api/FetchAction.java [65:91]
public Response<?> apply(ProjectResource resource, Input input) throws RestApiException {
if (!preConditions.canCallFetchApi()) {
throw new AuthException("not allowed to call fetch command");
}
try {
if (Strings.isNullOrEmpty(input.label)) {
throw new BadRequestException("Source label cannot be null or empty");
}
if (Strings.isNullOrEmpty(input.refName)) {
throw new BadRequestException("Ref-update refname cannot be null or empty");
}
if (input.async) {
return applyAsync(resource.getNameKey(), input);
}
return applySync(resource.getNameKey(), input);
} catch (InterruptedException
| ExecutionException
| IllegalStateException
| TimeoutException e) {
throw RestApiException.wrap(e.getMessage(), e);
} catch (RemoteConfigurationMissingException e) {
throw new UnprocessableEntityException(e.getMessage());
}
}