config oops

This commit is contained in:
John Smith 2023-12-10 15:40:38 -05:00 committed by Christien Rioux
parent 064661f20d
commit 9c0c7cf0b2
5 changed files with 5 additions and 3 deletions

View File

@ -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

View File

@ -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

View File

@ -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
}
};

View File

@ -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);

View File

@ -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,