Skip to content

Commit 4e6427d

Browse files
committed
remove last remainders of ElasticSearch
1 parent dfcfdc7 commit 4e6427d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/main/java/de/komoot/photon/App.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ private static void startNominatimUpdate(NominatimUpdater nominatimUpdater, Serv
285285
dbProperties.setImportDate(importDate);
286286
esServer.saveToDatabase(dbProperties);
287287
} catch (IOException e) {
288-
throw new UsageException("Cannot setup index, elastic search config files not readable");
288+
throw new UsageException("Cannot setup index, database config files not readable");
289289
}
290290
}
291291

src/main/java/de/komoot/photon/config/PhotonDBConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public PhotonDBConfig() {
2626
private String dataDirectory = new File(".").getAbsolutePath();
2727

2828
@Parameter(names = "-transport-addresses", category = GROUP, placeholder = "ADDR,..", description = """
29-
Comma-separated list of addresses of external ElasticSearch nodes the client can connect to;
29+
Comma-separated list of addresses of external OpenSearch nodes the client can connect to;
3030
when left empty, then an internal server is started and used
3131
""")
3232
private List<String> transportAddresses = new ArrayList<>();

src/main/java/de/komoot/photon/opensearch/OpenSearchStructuredSearchHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import java.io.IOException;
1515

1616
/**
17-
* Execute a structured forward lookup on an Elasticsearch database.
17+
* Execute a structured forward lookup.
1818
*/
1919
@NullMarked
2020
public class OpenSearchStructuredSearchHandler implements SearchHandler<StructuredSearchRequest> {

0 commit comments

Comments
 (0)