Skip to content

Commit a9b105d

Browse files
committed
add fullnode process compose execution.
1 parent 5b48e4c commit a9b105d

File tree

5 files changed

+50
-58
lines changed

5 files changed

+50
-58
lines changed

docs/movement-node/run-fullnode/ansible/devnet/movement-fullnode.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
vars:
88
repo_url: "https://github.com/movementlabsxyz/movement"
99
destination_path: "/home/{{ user }}/movement"
10-
chain_id: "250"
11-
aws_region: "us-west-1"
10+
chain_id: "27"
11+
aws_region: "us-west-2"
1212
rev: "{{ movement_container_version }}"
1313

1414
tasks:

docs/movement-node/run-fullnode/ansible/testnet/movement-fullnode.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
repo_url: "https://github.com/movementlabsxyz/movement"
99
destination_path: "/home/{{ user }}/movement"
1010
chain_id: "250"
11-
aws_region: "us-west-1"
11+
aws_region: "us-west-2"
1212
rev: "{{ movement_container_version }}"
1313

1414
tasks:

process-compose/movement-full-node/process-compose.follower.yml

Lines changed: 0 additions & 54 deletions
This file was deleted.
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
version: "3"
2+
3+
processes:
4+
5+
da-setup:
6+
command: |
7+
exit 0
8+
depends_on:
9+
setup:
10+
condition: process_completed_successfully
11+
readiness_probe:
12+
exec:
13+
command: echo "true"
14+
15+
da-sequencer:
16+
command: |
17+
exit 0
18+
depends_on:
19+
setup:
20+
condition: process_completed_successfully
21+
readiness_probe:
22+
exec:
23+
command: echo "true"
24+
25+
movement-full-node:
26+
command: |
27+
RUST_BACKTRACE=1 movement-full-node run
28+
depends_on:
29+
setup:
30+
condition: process_completed_successfully
31+
da-sequencer:
32+
condition: process_completed_successfully
33+
readiness_probe:
34+
initial_delay_seconds: 10
35+
exec:
36+
command: curl http://0.0.0.0:30731
37+
38+
movement-faucet:
39+
command : |
40+
exit 0
41+
depends_on:
42+
movement-full-node:
43+
condition: process_healthy
44+
readiness_probe:
45+
exec:
46+
command: echo "true"

protocol-units/da-sequencer/client/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ impl GrpcDaSequencerClient {
8181
}
8282
Err(err) => {
8383
tracing::warn!(
84-
"DA sequencer Http2 connection failed: {}. Retrying in 10s...",
84+
"DA sequencer Http2 connection url:{connection_url} failed: {}. Retrying in 10s...",
8585
err
8686
);
8787
let _ = tokio::time::sleep(Duration::from_secs(10)).await;

0 commit comments

Comments
 (0)