Skip to content

Commit

Permalink
Add a warning if sts group property is empty
Browse files Browse the repository at this point in the history
  • Loading branch information
payetvin committed Dec 16, 2024
1 parent 001e6d5 commit 89bd21d
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,12 @@ bool Properties::validate()
<< " should be inferior to 1, value has been set to " << initialLevel;
}

if (groupName.empty())
{
logs.warning() << "Group name is empty for short term storage " << name;
return false;
}

return true;
}

Expand Down

0 comments on commit 89bd21d

Please sign in to comment.