aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/main/java/com/yahoo/vespa/model/filedistribution
diff options
context:
space:
mode:
authorJon Bratseth <jonbratseth@yahoo.com>2017-12-15 08:16:08 +0100
committerGitHub <noreply@github.com>2017-12-15 08:16:08 +0100
commit33c9bbe35b04a0831e737df227d46c53d6cbbf46 (patch)
tree9a050873c0406a40f84b3625296ac5219c37f8a2 /config-model/src/main/java/com/yahoo/vespa/model/filedistribution
parentefd900a4cd552b034f8417b3487fecb0ea40525f (diff)
Revert "Revert "Revert "Revert "Bratseth/select 1 host by index""""
Diffstat (limited to 'config-model/src/main/java/com/yahoo/vespa/model/filedistribution')
-rw-r--r--config-model/src/main/java/com/yahoo/vespa/model/filedistribution/FileDistributionConfigProvider.java4
-rw-r--r--config-model/src/main/java/com/yahoo/vespa/model/filedistribution/FileDistributor.java10
2 files changed, 7 insertions, 7 deletions
diff --git a/config-model/src/main/java/com/yahoo/vespa/model/filedistribution/FileDistributionConfigProvider.java b/config-model/src/main/java/com/yahoo/vespa/model/filedistribution/FileDistributionConfigProvider.java
index 33cc581c3a8..a78eb1f74f9 100644
--- a/config-model/src/main/java/com/yahoo/vespa/model/filedistribution/FileDistributionConfigProvider.java
+++ b/config-model/src/main/java/com/yahoo/vespa/model/filedistribution/FileDistributionConfigProvider.java
@@ -33,14 +33,14 @@ public class FileDistributionConfigProvider {
fileDistributionOptions.getConfig(builder);
builder.torrentport(FileDistributorService.BASEPORT + 1);
builder.stateport(FileDistributorService.BASEPORT + 2);
- builder.hostname(host.getHostName());
+ builder.hostname(host.getHostname());
builder.filedbpath(FileDistribution.getDefaultFileDBPath().toString());
}
public void getConfig(FiledistributorrpcConfig.Builder builder) {
// If disabled config proxy should act as file distributor, so use config proxy port
int port = (fileDistributionOptions.disableFiledistributor()) ? ConfigProxy.BASEPORT : FileDistributorService.BASEPORT;
- builder.connectionspec("tcp/" + host.getHostName() + ":" + port);
+ builder.connectionspec("tcp/" + host.getHostname() + ":" + port);
}
public void getConfig(FilereferencesConfig.Builder builder) {
diff --git a/config-model/src/main/java/com/yahoo/vespa/model/filedistribution/FileDistributor.java b/config-model/src/main/java/com/yahoo/vespa/model/filedistribution/FileDistributor.java
index 8fcece3aa80..f3aad88a446 100644
--- a/config-model/src/main/java/com/yahoo/vespa/model/filedistribution/FileDistributor.java
+++ b/config-model/src/main/java/com/yahoo/vespa/model/filedistribution/FileDistributor.java
@@ -78,7 +78,7 @@ public class FileDistributor {
}
public Set<String> getTargetHostnames() {
- return getTargetHosts().stream().map(Host::getHostName).collect(Collectors.toSet());
+ return getTargetHosts().stream().map(Host::getHostname).collect(Collectors.toSet());
}
/** Returns the host which is the source of the files */
@@ -94,9 +94,9 @@ public class FileDistributor {
public void sendDeployedFiles(FileDistribution dbHandler) {
String fileSourceHost = fileSourceHost();
for (Host host : getTargetHosts()) {
- if ( ! host.getHostName().equals(fileSourceHost)) {
- dbHandler.sendDeployedFiles(host.getHostName(), filesToSendToHost(host));
- dbHandler.startDownload(host.getHostName(), filesToSendToHost(host));
+ if ( ! host.getHostname().equals(fileSourceHost)) {
+ dbHandler.sendDeployedFiles(host.getHostname(), filesToSendToHost(host));
+ dbHandler.startDownload(host.getHostname(), filesToSendToHost(host));
}
}
dbHandler.sendDeployedFiles(fileSourceHost, allFilesToSend());
@@ -108,5 +108,5 @@ public class FileDistributor {
public void reloadDeployFileDistributor(FileDistribution dbHandler) {
dbHandler.reloadDeployFileDistributor();
}
-
+
}