Skip to content

Commit 50e394c

Browse files
committed
Use port 1025 for ASA
1 parent 224887b commit 50e394c

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,5 +54,4 @@ jobs:
5454
--resource-group ${{ env.GROUP_NAME }} \
5555
--artifact-path ${{env.JAR_PATH}} \
5656
--runtime-version Java_21 \
57-
--jvm-options='-Xmx1g -Xms1g' \
58-
--disable-probe=true
57+
--jvm-options='-Xmx1g -Xms1g'

src/main/java/io/projectreactor/Application.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015-2024 VMware Inc. or its affiliates, All Rights Reserved.
2+
* Copyright (c) 2015-2025 VMware Inc. or its affiliates, All Rights Reserved.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -129,7 +129,7 @@ public final class Application {
129129

130130
context = HttpServer.create()
131131
.host("0.0.0.0")
132-
.port(8080)
132+
.port(1025)
133133
.route(r -> r.file("/favicon.ico", contentPath.resolve("favicon.ico"))
134134
.get("/security-policy", template("security-policy"))
135135
.file("/.well-known/security.txt", contentPath.resolve("well-known/security.txt"))

0 commit comments

Comments
 (0)