From 0c9fd978c15da8c5e18ad25daf65988e01e0c270 Mon Sep 17 00:00:00 2001 From: Samuel Laferriere Date: Mon, 4 Nov 2024 12:03:33 +0000 Subject: [PATCH] flags: clearer usage string for eigenda-client ResponseTimeoutFlag --- flags/eigendaflags/cli.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flags/eigendaflags/cli.go b/flags/eigendaflags/cli.go index 3093740..f186834 100644 --- a/flags/eigendaflags/cli.go +++ b/flags/eigendaflags/cli.go @@ -51,7 +51,7 @@ func CLIFlags(envPrefix, category string) []cli.Flag { }, &cli.DurationFlag{ Name: ResponseTimeoutFlagName, - Usage: "Total time to wait for a response from the EigenDA disperser. Default is 60 seconds.", + Usage: "Flag used to configure the underlying disperser-client. Total time to wait for the disperseBlob call to return or disperseAuthenticatedBlob stream to finish and close.", Value: 60 * time.Second, EnvVars: []string{withEnvPrefix(envPrefix, "RESPONSE_TIMEOUT")}, Category: category,