Skip to content

Commit

Permalink
removed agent unfreeze
Browse files Browse the repository at this point in the history
  • Loading branch information
jtwhite79 committed Aug 30, 2023
1 parent f5a088d commit 5191052
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions src/libs/run_managers/yamr/PantherAgent.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1133,13 +1133,13 @@ void PANTHERAgent::start_impl(const string &host, const string &port)
ss.str("");
ss << "frozen";
report(ss.str(), true);
w_sleep(3000);
if (quit_file_found()) {
report("pest.stp file found, resetting panther_agent_freeze_on_fail and continuing...",
true);
pest_scenario.get_pestpp_options_ptr()->set_panther_debug_fail_freeze(false);
break;
}
w_sleep(10000);
// if (quit_file_found()) {
// report("pest.stp file found, resetting panther_agent_freeze_on_fail and continuing...",
// true);
// pest_scenario.get_pestpp_options_ptr()->set_panther_debug_fail_freeze(false);
// break;
// }
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/libs/run_managers/yamr/RunManagerPanther.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1391,7 +1391,7 @@ void RunManagerPanther::process_message(int i_sock)
if (run_finished(run_id))
{
stringstream ss;
ss << "Prevoiusly completed run_id:" << run_id << " finished on:" << host_name << "$" << agent_info_iter->get_work_dir() <<
ss << "Previously completed run_id:" << run_id << " finished on:" << host_name << "$" << agent_info_iter->get_work_dir() <<
" run time:" << agent_info_iter->get_runtime_minute() << " min group_id:" << group_id <<
" " << net_pack.get_info_txt() << " concurrent:" << get_n_concurrent(run_id);
report(ss.str(), false);
Expand Down

0 comments on commit 5191052

Please sign in to comment.