mirror of
https://gitlab.com/veilid/veilid.git
synced 2025-01-23 13:11:00 -05:00
config oops
This commit is contained in:
parent
064661f20d
commit
9c0c7cf0b2
@ -90,7 +90,7 @@ core:
|
||||
remote_max_storage_space_mb: 0
|
||||
public_watch_limit: 32
|
||||
member_watch_limit: 8
|
||||
|
||||
max_watch_expiration_ms: 600000
|
||||
upnp: true
|
||||
detect_address_changes: true
|
||||
restricted_nat_retries: 0
|
||||
|
@ -257,7 +257,7 @@ dht:
|
||||
remote_max_storage_space_mb: 0
|
||||
public_watch_limit: 32
|
||||
member_watch_limit: 8
|
||||
|
||||
max_watch_expiration_ms: 600000
|
||||
```
|
||||
|
||||
#### core:network:tls
|
||||
|
@ -57,7 +57,7 @@ impl ProtectedStore {
|
||||
inner.keyring_manager = match maybe_km {
|
||||
Ok(v) => Some(v),
|
||||
Err(e) => {
|
||||
log_pstore!(error "Failed to create secure keyring manager: {}", e);
|
||||
info!("Secure key storage service unavailable, falling back to direct disk-based storage: {}", e);
|
||||
None
|
||||
}
|
||||
};
|
||||
|
@ -763,6 +763,7 @@ impl VeilidConfig {
|
||||
get_config!(inner.network.dht.remote_max_storage_space_mb);
|
||||
get_config!(inner.network.dht.public_watch_limit);
|
||||
get_config!(inner.network.dht.member_watch_limit);
|
||||
get_config!(inner.network.dht.max_watch_expiration_ms);
|
||||
get_config!(inner.network.rpc.concurrency);
|
||||
get_config!(inner.network.rpc.queue_size);
|
||||
get_config!(inner.network.rpc.max_timestamp_behind_ms);
|
||||
|
@ -90,6 +90,7 @@ export const veilidCoreStartupConfig = {
|
||||
remote_max_storage_space_mb: 0,
|
||||
public_watch_limit: 32,
|
||||
member_watch_limit: 8,
|
||||
max_watch_expiration_ms: 600000,
|
||||
},
|
||||
upnp: true,
|
||||
detect_address_changes: true,
|
||||
|
Loading…
Reference in New Issue
Block a user