Skip to content

Commit 89db8bd

Browse files
committed
#340 #341: Fix port conflicts
#!components: grid-bot
1 parent 4b461c4 commit 89db8bd

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

services/grid-bot/.component.yaml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ deployment:
4242
grpc:
4343
static: 5000
4444
http:
45-
static: 8080
45+
static: 8888
4646
services:
4747
- name: ${{ env.NOMAD_ENVIRONMENT }}-grid-bot
4848
port: metrics
@@ -51,12 +51,6 @@ deployment:
5151
checks:
5252
- type: http
5353
path: /metrics
54-
- name: ${{ env.NOMAD_ENVIRONMENT }}-grid-bot-recovery
55-
port: grpc
56-
tags:
57-
- ${{ env.NOMAD_ENVIRONMENT }}
58-
checks:
59-
- type: grpc
6054

6155
- name: ${{ env.NOMAD_ENVIRONMENT }}-grid-bot-web
6256
port: http

services/grid-bot/lib/settings/Providers/WebSettings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public class WebSettings : BaseSettingsProvider
2121
/// <summary>
2222
/// Gets the bind address for the web server.
2323
/// </summary>
24-
public string WebServerBindAddress => GetOrDefault(nameof(WebServerBindAddress), "http://+:8080");
24+
public string WebServerBindAddress => GetOrDefault(nameof(WebServerBindAddress), "http://+:8888");
2525

2626
/// <summary>
2727
/// Determines if the web server is behind a reverse proxy.

0 commit comments

Comments
 (0)