Description
Bug Fix
- Incorrect logic : It used isNotBlank which caused the program to error out when the input was actually valid.
- The fix : Changed isNotBlank to isBlank.
// Before
if (StringUtils.isNotBlank(input)) {
System.err.println("input cannot be empty, for example: inlongGroupId:test_group");
return;
}
// After
if (StringUtils.isBlank(input)) {
System.err.println("input cannot be empty, for example: inlongGroupId:test_group");
return;
}
InLong Component
InLong Manager
Are you willing to submit PR?
Code of Conduct
Description
Bug Fix
InLong Component
InLong Manager
Are you willing to submit PR?
Code of Conduct