Skip to content

Commit

Permalink
add lifetime for daemon_shared_app fn return
Browse files Browse the repository at this point in the history
  • Loading branch information
czarte committed Oct 14, 2024
1 parent eb3ca81 commit aa01112
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node/src/daemon/setup_reporter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ pub fn setup_cluster_from(input: Vec<(&str, &str, UiSetupResponseValueStatus)>)
.collect::<SetupCluster>()
}

fn daemon_shared_app() -> App {
fn daemon_shared_app() -> App<'static, 'static> {
shared_app(app_head()).arg(data_directory_arg(DATA_DIRECTORY_DAEMON_HELP.as_str()))
}

Expand Down

0 comments on commit aa01112

Please sign in to comment.