justinmclean opened a new issue, #7702:
URL: https://github.com/apache/gravitino/issues/7702
### What would you like to be improved?
strToSeq in
/Users/justinmclean/gravitino/core/src/main/java/org/apache/gravitino/config/ConfigEntry.java
will convert empty strings to a list containing a blank value, an empty list
would be better.
This test in
core/src/test/java/org/apache/gravitino/config/TestConfigEntry.java should help:
```
@Test
public void testStrToSeqEmptyString() {
ConfigEntry<String> conf = new
ConfigBuilder("gravitino.test.seq").stringConf().create();
List<String> result = conf.strToSeq("", s -> s);
Assertions.assertTrue(result.isEmpty());
}
```
### How should we improve?
see above
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]