justinmclean opened a new issue, #7634:
URL: https://github.com/apache/gravitino/issues/7634
### What would you like to be improved?
Adding this test to
core/src/test/java/org/apache/gravitino/config/TestConfigEntryList.java fails:
```
@Test
public void testSeqToStrWithNullElement() {
ConfigEntry<List<Integer>> testConf =
new ConfigBuilder("gravitino.seq.null")
.intConf()
.toSequence()
.createWithDefault(Lists.newArrayList());
Assertions.assertDoesNotThrow(
() -> testConf.writeTo(configMapEmpty, Lists.newArrayList(1, null,
2)));
Assertions.assertEquals("1,2", configMapEmpty.get("gravitino.seq.null"));
}
```
### How should we improve?
Filter out nulls
--
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]