From 3f9f6aff428d50694c93bd70599150febfc7b888 Mon Sep 17 00:00:00 2001 From: Kritika Date: Wed, 19 Jun 2019 16:31:41 +0530 Subject: [PATCH] agents need to connect over secure port --- .../main/java/com/thoughtworks/go/agent/DevelopmentAgent.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/development-utility/development-agent/src/main/java/com/thoughtworks/go/agent/DevelopmentAgent.java b/development-utility/development-agent/src/main/java/com/thoughtworks/go/agent/DevelopmentAgent.java index e62b2421437..02bdd44c2f7 100644 --- a/development-utility/development-agent/src/main/java/com/thoughtworks/go/agent/DevelopmentAgent.java +++ b/development-utility/development-agent/src/main/java/com/thoughtworks/go/agent/DevelopmentAgent.java @@ -32,7 +32,7 @@ public static void main(String[] args) throws Exception { new ProcessRunner().command("curl", "http://localhost:8153/go/admin/tfs-impl.jar", "--fail", "--silent", "--output", "tfs-impl.jar").failOnError(false).run(); new SystemEnvironment().set(SystemEnvironment.PLUGIN_ACTIVATOR_JAR_PATH, "go-plugin-activator.jar"); assertActivationJarPresent(); - AgentMain.main("-serverUrl", "http://localhost:8153/go"); + AgentMain.main("-serverUrl", "https://localhost:8154/go"); } private static void assertActivationJarPresent() {