Skip to content

Commit

Permalink
chore(starknet_sequencer_node): add remote client to active component…
Browse files Browse the repository at this point in the history
… config

commit-id:4f409ba2
  • Loading branch information
Itay-Tsabary-Starkware committed Dec 9, 2024
1 parent 2ade4e3 commit c39fe62
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 3 deletions.
25 changes: 25 additions & 0 deletions config/sequencer/default_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -509,6 +509,31 @@
"privacy": "Public",
"value": "Enabled"
},
"components.monitoring_endpoint.remote_client_config.#is_none": {
"description": "Flag for an optional field.",
"privacy": "TemporaryValue",
"value": true
},
"components.monitoring_endpoint.remote_client_config.idle_connections": {
"description": "The maximum number of idle connections to keep alive.",
"privacy": "Public",
"value": 18446744073709551615
},
"components.monitoring_endpoint.remote_client_config.idle_timeout": {
"description": "The duration in seconds to keep an idle connection open before closing.",
"privacy": "Public",
"value": 90
},
"components.monitoring_endpoint.remote_client_config.retries": {
"description": "The max number of retries for sending a message.",
"privacy": "Public",
"value": 3
},
"components.monitoring_endpoint.remote_client_config.socket": {
"description": "The remote component server socket.",
"privacy": "Public",
"value": "0.0.0.0:8080"
},
"components.state_sync.execution_mode": {
"description": "The component execution mode.",
"privacy": "Public",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,22 +73,27 @@ impl Default for ReactiveComponentExecutionConfig {
#[derive(Clone, Debug, Serialize, Deserialize, Validate, PartialEq)]
pub struct ActiveComponentExecutionConfig {
pub execution_mode: ActiveComponentExecutionMode,
pub remote_client_config: Option<RemoteClientConfig>,
}

impl SerializeConfig for ActiveComponentExecutionConfig {
fn dump(&self) -> BTreeMap<ParamPath, SerializedParam> {
BTreeMap::from_iter([ser_param(
let members = BTreeMap::from_iter([ser_param(
"execution_mode",
&self.execution_mode,
"The component execution mode.",
ParamPrivacyInput::Public,
)])
)]);
vec![members, ser_optional_sub_config(&self.remote_client_config, "remote_client_config")]
.into_iter()
.flatten()
.collect()
}
}

impl Default for ActiveComponentExecutionConfig {
fn default() -> Self {
Self { execution_mode: ActiveComponentExecutionMode::Enabled }
Self { execution_mode: ActiveComponentExecutionMode::Enabled, remote_client_config: None }
}
}

Expand Down

0 comments on commit c39fe62

Please sign in to comment.