From 396fddad47d4d4f456d77cdf30b3a06391a80bd9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Stone" Date: Wed, 25 Oct 2023 21:11:49 +0000 Subject: [PATCH] clippy clean --- sled-agent/src/bootstrap/bootstore_setup.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sled-agent/src/bootstrap/bootstore_setup.rs b/sled-agent/src/bootstrap/bootstore_setup.rs index 3c7e860b4a..9eb0a87c03 100644 --- a/sled-agent/src/bootstrap/bootstore_setup.rs +++ b/sled-agent/src/bootstrap/bootstore_setup.rs @@ -5,6 +5,8 @@ //! Helpers for configuring and starting the bootstore during bootstrap agent //! startup. +#![allow(clippy::result_large_err)] + use super::config::BOOTSTORE_PORT; use super::server::StartError; use bootstore::schemes::v0 as bootstore;