AHeise commented on a change in pull request #17580:
URL: https://github.com/apache/flink/pull/17580#discussion_r755791294
##########
File path:
flink-runtime/src/main/java/org/apache/flink/runtime/minicluster/MiniCluster.java
##########
@@ -120,12 +125,20 @@
import java.util.function.Function;
import java.util.stream.Collectors;
+import static org.apache.flink.configuration.ConfigOptions.key;
import static org.apache.flink.util.Preconditions.checkNotNull;
import static org.apache.flink.util.Preconditions.checkState;
/** MiniCluster to execute Flink jobs locally. */
public class MiniCluster implements AutoCloseableAsync {
+ public static final ConfigOption<String> PLUGIN_DIRECTORY =
Review comment:
Do we need a config option here? I was thinking that it would be better
in this case to add a simple `String` field to `MiniClusterConfiguration` iff
the option is only ever used in the `MiniCluster`. Then we can make it easier
to use in `MiniClusterConfiguration#Builder`.
--
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]