From b3def47dbd60dbae4a9e0f660ce43bb485134970 Mon Sep 17 00:00:00 2001 From: Sebastian Holmin Date: Mon, 18 Nov 2024 15:48:46 +0100 Subject: [PATCH] Fix connection checker CLI --- test/connection-checker/src/cli.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/test/connection-checker/src/cli.rs b/test/connection-checker/src/cli.rs index 66402c89595a..20dae27cb555 100644 --- a/test/connection-checker/src/cli.rs +++ b/test/connection-checker/src/cli.rs @@ -39,5 +39,6 @@ pub struct Opt { pub payload: String, /// URL to perform the connection check against. For example, https://am.i.mullvad.net/json. + #[clap(long)] pub url: String, }