Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove TREAT reports from deploy and report nodes #396

Merged
merged 1 commit into from
Jul 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions model/Clinical/CMDecisionTree.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ class CMDTReport : public CMDecisionTree {
for( const size_t outId : outIds ){
mon::reportEventMHI_CMDT( mon::MCD_CMDT_REPORT, hostData.human, 1, outId);
}
return CMDTOut(true);
return CMDTOut(false);
}
private:
vector<int> outIds;
Expand Down Expand Up @@ -530,7 +530,7 @@ class CMDTDeploy : public CMDecisionTree, interventions::HumanIntervention {
//NOTE: it's not intuitively obvious what value should be returned here
// in the case of intervention deployment. This at least means that
// repeat seekers get second-line treatment.
return CMDTOut(true);
return CMDTOut(false);
}
};

Expand Down
Loading