Skip to content

Commit

Permalink
Merge branch 'feat-2.0' into copy_auction_state_from_types
Browse files Browse the repository at this point in the history
  • Loading branch information
Maciej Wójcik committed Nov 26, 2024
2 parents db86dd0 + 25ad1c3 commit 1c18a4c
Show file tree
Hide file tree
Showing 15 changed files with 1,122 additions and 598 deletions.
404 changes: 212 additions & 192 deletions Cargo.lock

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions resources/example_configs/EXAMPLE_NCTL_CONFIG.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ request_limit = 3
request_buffer_size = 16
message_timeout_secs = 30
client_access_timeout_secs = 2
keepalive_timeout_ms = 10_000

[rpc_server.node_client.exponential_backoff]
initial_delay_ms = 1000
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ request_limit = 3
request_buffer_size = 16
message_timeout_secs = 30
client_access_timeout_secs = 2
keepalive_timeout_ms = 10_000

[rpc_server.node_client.exponential_backoff]
initial_delay_ms = 1000
Expand Down
1 change: 1 addition & 0 deletions resources/example_configs/EXAMPLE_NODE_CONFIG.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ request_limit = 10
request_buffer_size = 50
message_timeout_secs = 60
client_access_timeout_secs = 60
keepalive_timeout_ms = 10_000

[rpc_server.node_client.exponential_backoff]
initial_delay_ms = 1000
Expand Down
2 changes: 2 additions & 0 deletions resources/example_configs/default_debian_config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,8 @@ request_buffer_size = 16
message_timeout_secs = 30
# Timeout specifying how long to wait for binary port client to be available.
client_access_timeout_secs = 2
# The amount of time in milliseconds to wait between sending keepalive requests.
keepalive_timeout_ms = 10_000

[rpc_server.node_client.exponential_backoff]
# The initial delay in milliseconds before the first retry.
Expand Down
2 changes: 2 additions & 0 deletions resources/example_configs/default_rpc_only_config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,8 @@ request_buffer_size = 16
message_timeout_secs = 30
# Timeout specifying how long to wait for binary port client to be available.
client_access_timeout_secs = 2
# The amount of time in milliseconds to wait between sending keepalive requests.
keepalive_timeout_ms = 10_000

[rpc_server.node_client.exponential_backoff]
# The initial delay in milliseconds before the first retry.
Expand Down
601 changes: 396 additions & 205 deletions resources/test/rpc_schema.json

Large diffs are not rendered by default.

Loading

0 comments on commit 1c18a4c

Please sign in to comment.