hqbhoho commented on code in PR #7820:
URL: https://github.com/apache/gravitino/pull/7820#discussion_r2256915012
##########
flink-connector/flink/src/main/java/org/apache/gravitino/flink/connector/store/GravitinoCatalogStoreFactory.java:
##########
@@ -80,6 +85,17 @@ public Set<ConfigOption<?>> requiredOptions() {
@Override
public Set<ConfigOption<?>> optionalOptions() {
- return Collections.emptySet();
+ return ImmutableSet.of(GRAVITINO_CLIENT_CONFIG);
Review Comment:
```
public static final ConfigOption<Map<String, String>>
GRAVITINO_CLIENT_CONFIG =
ConfigOptions.key("gravitino.client.config")
.mapType()
.defaultValue(ImmutableMap.of())
.withDescription("The config of Gravitino client");
```
It is a ConfigOption with map value. Maybe not only a config prefix.
--
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]