Skip to content

Commit

Permalink
Change default server url protocol from http to https
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Trebing committed Oct 18, 2023
1 parent e89ff2b commit ecfe92d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
public class Elasticsearch {

protected static final Logger logger = LogManager.getLogger(Elasticsearch.class);
public static final ServerUrl NODE_DEFAULT = new ServerUrl("http://127.0.0.1:9200");
public static final ServerUrl NODE_DEFAULT = new ServerUrl("https://127.0.0.1:9200");

private List<ServerUrl> nodes = Collections.singletonList(NODE_DEFAULT);
private String index;
Expand Down

0 comments on commit ecfe92d

Please sign in to comment.