Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
puppetninja committed Aug 1, 2024
1 parent 96c41ad commit 88a9130
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions charts/tezos/templates/octez-rollup-node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,8 @@ spec:
{{- end }}
{{- end }}
- name: sidecar
image: "{{ $.Values.images.octez }}"
imagePullPolicy: {{ $.Values.images_pull_policy }}
image: "{{ $.Values.tezos_k8s_images.utils }}"
imagePullPolicy: {{ $.Values.tezos_k8s_images_pull_policy }}
args:
- sidecar-evm
env:
Expand Down
2 changes: 1 addition & 1 deletion utils/sidecar-evm.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def health():
"params": ["latest", False],
"id": 1
}
resp = requests.get("http://127.0.0.1:8545", payload=payload, timeout=NODE_CONNECT_TIMEOUT)
resp = requests.post("http://127.0.0.1:8545", json=payload, timeout=NODE_CONNECT_TIMEOUT)
resp = resp.json()
except ConnectTimeout as e:
err = "Timeout connect to node, %s" % repr(e), 500
Expand Down

0 comments on commit 88a9130

Please sign in to comment.