Skip to content

Commit

Permalink
chore: try debug ci
Browse files Browse the repository at this point in the history
  • Loading branch information
richardtreier committed Nov 30, 2023
1 parent 6f4a9a8 commit cbd42f0
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
public class TestUtils {
private static final int MANAGEMENT_PORT = 34002;
private static final int PROTOCOL_PORT = 34003;
private static final int WEB_PORT = 34001;
private static final String MANAGEMENT_PATH = "/api/management";
private static final String PROTOCOL_PATH = "/api/dsp";
public static final String MANAGEMENT_API_KEY = "123456";
Expand All @@ -39,7 +40,7 @@ public static Map<String, String> createConfiguration(
Map<String, String> additionalConfigProperties
) {
Map<String, String> config = new HashMap<>();
config.put("web.http.port", String.valueOf(getFreePort()));
config.put("web.http.port", String.valueOf(WEB_PORT));
config.put("web.http.path", "/api");
config.put("web.http.management.port", String.valueOf(MANAGEMENT_PORT));
config.put("web.http.management.path", MANAGEMENT_PATH);
Expand Down

0 comments on commit cbd42f0

Please sign in to comment.