You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This applies to both graph-builder and policy-engine.
The status service needs to configurable via TOML config file. Initial proposal:
#[derive(Deserialize)]structFileConfig{/// Status service config.status:Option<StatusConfig>,}#[derive(Deserialize)]structStatusConfig{/// Address on which the status service will listen,pubaddress:Option<IpAddr>,/// Port to which the status service will bind.pubport:Option<u16>,}
The text was updated successfully, but these errors were encountered:
This applies to both graph-builder and policy-engine.
The status service needs to configurable via TOML config file. Initial proposal:
The text was updated successfully, but these errors were encountered: