Skip to content

Commit

Permalink
fixed Conductor Ready check
Browse files Browse the repository at this point in the history
  • Loading branch information
matthme committed Oct 10, 2023
1 parent 1920ece commit 714a7a6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src-tauri/src/conductor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ pub async fn launch_holochain_process(
match event.clone() {
CommandEvent::Stdout(line) => {
log::info!("[HOLOCHAIN] {}", line);
if line == String::from("Conductor ready.") {
if line.contains("Conductor ready.") {
launch_state = LaunchHolochainProcessState::Success;
break;
}
Expand Down

0 comments on commit 714a7a6

Please sign in to comment.