We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df82796 commit 7d360f1Copy full SHA for 7d360f1
sugondat/shim/src/cli.rs
@@ -87,6 +87,14 @@ pub struct SugondatRpcParams {
87
/// The address of the sugondat-node to connect to.
88
#[clap(long, default_value = "ws://localhost:9988", env = ENV_SUGONDAT_NODE_URL)]
89
pub node_url: String,
90
+
91
+ /// By default, the connection to the sugondat-node is persistent.
92
+ /// If, for any reason, it's impossible to connect to the sugondato-node
93
+ /// or if it fails while connected, it retries to reestablish the connection.
94
+ ///
95
+ /// This flag avoids this behavior by attempting only a single connection
96
+ #[clap(long, default_value = "false", default_missing_value = "true")]
97
+ pub no_retry: bool,
98
}
99
100
impl DockParams {
0 commit comments