This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository observe. See https://gitlab.nuiton.org/codelutin/observe.git commit 139e56c83da673e5de6f69583d3bb7d58e99e005 Author: Tony CHEMIT <chemit@codelutin.com> Date: Wed Dec 7 16:31:58 2016 +0100 Forcer l'utilisation de localhost pour le serveur web H2 (Fixes #8765) --- .../swing/ui/actions/menu/storage/StartH2WebServerAction.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/application-swing/src/main/java/fr/ird/observe/application/swing/ui/actions/menu/storage/StartH2WebServerAction.java b/application-swing/src/main/java/fr/ird/observe/application/swing/ui/actions/menu/storage/StartH2WebServerAction.java index a7027da..3988308 100644 --- a/application-swing/src/main/java/fr/ird/observe/application/swing/ui/actions/menu/storage/StartH2WebServerAction.java +++ b/application-swing/src/main/java/fr/ird/observe/application/swing/ui/actions/menu/storage/StartH2WebServerAction.java @@ -76,8 +76,7 @@ public class StartH2WebServerAction extends AbstractUIAction { Server server = Server.createWebServer("-webAllowOthers"); server.start(); - - Server.openBrowser(server.getURL()); + Server.openBrowser("http://localhost:" + server.getPort()); // On mémorise l'instance du server dans le contexte applicatif afin de pouvoir la récupérer plus tard, // par exemple lorsque l'on souhaitera arrêter le server. -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.