From 0a57ff8b2920bb63d0b54866e3c8ed1822683417 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Wed, 24 Mar 2021 11:26:31 +0100 Subject: [PATCH] disable RPC healthcheck due to timeouts caused by one thread MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- tasks/consul.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/tasks/consul.yml b/tasks/consul.yml index 8087244..1c7936d 100644 --- a/tasks/consul.yml +++ b/tasks/consul.yml @@ -9,12 +9,13 @@ port: '{{ beacon_node_listening_port }}' address: '{{ beacon_node_public_address }}' tags: ['{{ env }}.{{ stage }}', 'beacon', 'nimbus'] - checks: - - name: '{{ beacon_node_consul_service_name }}-health' - type: 'script' - script: '{{ beacon_node_cont_vol }}/rpc.sh get_v1_node_version' - interval: '60s' - timeout: '10s' + # Nimbus runs on one thread and RPC calls regularly time out. + #checks: + # - name: '{{ beacon_node_consul_service_name }}-health' + # type: 'script' + # script: '{{ beacon_node_cont_vol }}/rpc.sh get_v1_node_version' + # interval: '60s' + # timeout: '10s' - id: '{{ beacon_node_cont_name }}-metrics' name: '{{ beacon_node_consul_metrics_service_name }}'