From 2a04da8bf765604ad1e361c02c24bfbfcb339971 Mon Sep 17 00:00:00 2001 From: Paul Hauner Date: Tue, 28 May 2019 12:45:48 +1000 Subject: [PATCH] Switch HTTP listen port to 5052 This is a quick-fix to allow gRPC and HTTP to co-exist. In the future I think we should swap this back to 5051. --- beacon_node/http_server/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beacon_node/http_server/src/lib.rs b/beacon_node/http_server/src/lib.rs index 486badaff..f8f5b6741 100644 --- a/beacon_node/http_server/src/lib.rs +++ b/beacon_node/http_server/src/lib.rs @@ -21,7 +21,7 @@ impl Default for HttpServerConfig { fn default() -> Self { Self { enabled: false, - listen_address: "127.0.0.1:5051".to_string(), + listen_address: "127.0.0.1:5052".to_string(), } } }