use of com.yahoo.vespa.hosted.controller.api.integration.configserver.PrepareResponse in project vespa by vespa-engine.
the class ApplicationController method unexpectedDeployment.
private ActivateResult unexpectedDeployment(ApplicationId applicationId, ZoneId zone, Optional<ApplicationPackage> applicationPackage) {
Log logEntry = new Log();
logEntry.level = "WARNING";
logEntry.time = clock.instant().toEpochMilli();
logEntry.message = "Ignoring deployment of " + require(applicationId) + " to " + zone + " as a deployment is not currently expected";
PrepareResponse prepareResponse = new PrepareResponse();
prepareResponse.log = Collections.singletonList(logEntry);
prepareResponse.configChangeActions = new ConfigChangeActions(Collections.emptyList(), Collections.emptyList());
return new ActivateResult(new RevisionId(applicationPackage.map(ApplicationPackage::hash).orElse("0")), prepareResponse, applicationPackage.map(a -> a.zippedContent().length).orElse(0));
}
use of com.yahoo.vespa.hosted.controller.api.integration.configserver.PrepareResponse in project vespa by vespa-engine.
the class ConfigServerClientMock method prepare.
@Override
public PreparedApplication prepare(DeploymentId deployment, DeployOptions deployOptions, Set<String> rotationCnames, Set<String> rotationNames, byte[] content) {
lastPrepareVersion = deployOptions.vespaVersion.map(Version::new).orElse(null);
if (prepareException != null) {
RuntimeException prepareException = this.prepareException;
this.prepareException = null;
throw prepareException;
}
applicationActivated.put(deployment.applicationId(), false);
applicationInstances.put(deployment.applicationId(), UUID.randomUUID() + ":4080");
return new PreparedApplication() {
@Override
public void activate() {
applicationActivated.put(deployment.applicationId(), true);
}
@Override
public List<Log> messages() {
Log warning = new Log();
warning.level = "WARNING";
warning.time = 1;
warning.message = "The warning";
Log info = new Log();
info.level = "INFO";
info.time = 2;
info.message = "The info";
return Arrays.asList(warning, info);
}
@Override
public PrepareResponse prepareResponse() {
PrepareResponse prepareResponse = new PrepareResponse();
prepareResponse.message = "foo";
prepareResponse.configChangeActions = new ConfigChangeActions(Collections.emptyList(), Collections.emptyList());
prepareResponse.tenant = new TenantId("tenant");
return prepareResponse;
}
};
}
Aggregations