allow serverresource flag to not exit on failures

Signed-off-by: Abhishek Kumar <abhishek.mrt22@gmail.com>
This commit is contained in:
Abhishek Kumar 2024-10-17 19:12:18 +05:30
parent 4b2c5734db
commit b178946dbf
1 changed files with 4 additions and 0 deletions

View File

@ -78,4 +78,8 @@ public interface ServerResource extends Manager {
void setAgentControl(IAgentControl agentControl);
default boolean isExitOnFailures() {
return true;
}
}