Skip to content

Commit

Permalink
Change default port to 8089
Browse files Browse the repository at this point in the history
Change-Id: Ie0108112b5f8edc9e07c386a8bc3f69c12832607
  • Loading branch information
margaretha committed Sep 18, 2024
1 parent 4f2b0c3 commit 7cb419c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ public KustvaktConfiguration (Properties properties) throws Exception {
public KustvaktConfiguration () {}

public void loadBasicProperties (Properties properties) {
port = Integer.valueOf(properties.getProperty("server.port", "8095"));
port = Integer.valueOf(properties.getProperty("server.port", "8089"));
baseURL = properties.getProperty("kustvakt.base.url", "/api/*");
setSecureRandomAlgorithm(
properties.getProperty("security.secure.random.algorithm", ""));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,7 @@ protected void start ()

server.setConnectors(new Connector[] { connector });
try {
log.info("Starting server on port" + kargs.port);
server.start();
server.join();
}
Expand Down

0 comments on commit 7cb419c

Please sign in to comment.