From e90b766e70b681a1078ffcf472832d820e674999 Mon Sep 17 00:00:00 2001 From: Nathaniel Cook Date: Wed, 6 Nov 2024 14:04:41 -0700 Subject: [PATCH] fix: update cli flags descriptions --- one/src/daemon.rs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/one/src/daemon.rs b/one/src/daemon.rs index 25468575..28b749e5 100644 --- a/one/src/daemon.rs +++ b/one/src/daemon.rs @@ -238,16 +238,17 @@ pub struct DaemonOpts { )] ethereum_rpc_urls: Vec, - /// Enable the aggregator, requires Flight SQL to be enabled + /// Enable the aggregator, requires Flight SQL and S3 bucket to be defined. #[arg( long, requires = "flight_sql_bind_address", + requires = "s3_bucket", env = "CERAMIC_ONE_AGGREGATOR" )] aggregator: Option, - /// S3 bucket name. - /// When configured the aggregator will support storing data in S3 compatible object stores. + /// Name of the S3 bucket where Ceramic stores published data tables. + /// Requires using the experimental-features flag /// /// Credentials are read from the environment: /// @@ -497,7 +498,7 @@ pub async fn run(opts: DaemonOpts) -> Result<()> { .await .map_err(|e| { anyhow!( - "Failed to start linebp2p server using addresses: {}. {}", + "Failed to start libp2p server using addresses: {}. {}", opts.swarm_addresses.join(", "), e )