diff options
author | Alex <alex@adnab.me> | 2024-02-19 11:44:05 +0000 |
---|---|---|
committer | Alex <alex@adnab.me> | 2024-02-19 11:44:05 +0000 |
commit | 6bb34899f225141e65e79fe140b9abca29b39fd6 (patch) | |
tree | 250bb249084a3c4678c0088fcba0eb52d8344181 /src/garage | |
parent | b8217361c05883a839996a7db24be71c601e428f (diff) | |
parent | eab54b37981073651712a15334b60b2c409f2576 (diff) | |
download | garage-6bb34899f225141e65e79fe140b9abca29b39fd6.tar.gz garage-6bb34899f225141e65e79fe140b9abca29b39fd6.zip |
Merge pull request 'fixes to RPC networking' (#721) from networking-fixes into main
Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/721
Diffstat (limited to 'src/garage')
-rw-r--r-- | src/garage/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/garage/main.rs b/src/garage/main.rs index 4d8dcc67..e489fff0 100644 --- a/src/garage/main.rs +++ b/src/garage/main.rs @@ -203,7 +203,7 @@ async fn cli_command(opt: Opt) -> Result<(), Error> { // Generate a temporary keypair for our RPC client let (_pk, sk) = sodiumoxide::crypto::sign::ed25519::gen_keypair(); - let netapp = NetApp::new(GARAGE_VERSION_TAG, network_key, sk); + let netapp = NetApp::new(GARAGE_VERSION_TAG, network_key, sk, None); // Find and parse the address of the target host let (id, addr, is_default_addr) = if let Some(h) = opt.rpc_host { |