Skip to content

Commit

Permalink
Updating default port of JobRunr from 8000 to 1984
Browse files Browse the repository at this point in the history
  • Loading branch information
isontheline committed May 27, 2024
1 parent 79203be commit 50534a6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"postStartCommand": ".devcontainer/postStart.sh",
"postCreateCommand": ".devcontainer/postCreate.sh",
"forwardPorts": [
1984,
1985,
3000,
4173
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public void onApplicationEvent(@NonNull ContextRefreshedEvent event) {
System.out.println("================================================");
System.out.println(String.format("APP URL\t\t : %s://%s:%d/", scheme, host, port));
System.out.println(String.format("Swagger UI\t : %s://%s:%d/api/swagger-ui.html", scheme, host, port));
System.out.println(String.format("JobRunr\t\t : %s://%s:%d/", scheme, host, 8000));
System.out.println(String.format("JobRunr\t\t : %s://%s:%d/", scheme, host, 1984));
System.out.println("================================================");
}
}
2 changes: 1 addition & 1 deletion backend/src/main/resources/application-prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ org:
enabled: true
dashboard:
enabled: true
port: 8000
port: 1984
jobs:
default-number-of-retries: 10 # Number of retries for a failing job
retry-back-off-time-seed: 3 # Time seed for the exponential back-off policy
Expand Down
2 changes: 1 addition & 1 deletion backend/src/main/resources/application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ org:
enabled: true
dashboard:
enabled: true
port: 8000
port: 1984
jobs:
default-number-of-retries: 10 # Number of retries for a failing job
retry-back-off-time-seed: 3 # Time seed for the exponential back-off policy
Expand Down

0 comments on commit 50534a6

Please sign in to comment.