changed after the remove of longitude and latitude from site object

This commit is contained in:
Lucio Lelii 2022-07-06 11:12:54 +02:00
parent c840b2f762
commit 97d5fc1c05
1 changed files with 1 additions and 1 deletions

View File

@ -244,7 +244,7 @@ public class ContainerProfileBuilder {
ContainerConfiguration cfg = context.configuration();
node.profile().newSite().country(cfg.site().getCountry()).location(cfg.site().getLocation())
.latitude(cfg.site().getLatitude()).longitude(cfg.site().getLongitude()).domain(domainIn(cfg.hostname()));
.latitude("unknown").longitude("unknown").domain(domainIn(cfg.hostname()));
}
private void addVariablesTo(HostingNode node) {