mirror of
https://gitlab.com/veilid/veilid.git
synced 2024-10-01 01:26:08 -04:00
defer to specified command line mode
This commit is contained in:
parent
caa2746110
commit
eecbb14774
@ -131,8 +131,8 @@ fn main() -> Result<(), String> {
|
||||
}
|
||||
|
||||
// Get client address
|
||||
let enable_ipc = settings.enable_ipc;
|
||||
let mut enable_network = settings.enable_network;
|
||||
let enable_ipc = settings.enable_ipc && args.address.is_none();
|
||||
let mut enable_network = settings.enable_network && args.ipc_path.is_none();
|
||||
|
||||
// Determine IPC path to try
|
||||
let mut client_api_ipc_path = None;
|
||||
|
Loading…
Reference in New Issue
Block a user