tillrohrmann commented on a change in pull request #10037: [FLINK-14561] Don't
write FLINK_PLUGINS_DIR env variable to Configuration
URL: https://github.com/apache/flink/pull/10037#discussion_r341044580
##########
File path:
flink-core/src/main/java/org/apache/flink/core/plugin/PluginConfig.java
##########
@@ -55,23 +55,22 @@ private PluginConfig(Optional<Path> pluginsPath, String[]
alwaysParentFirstPatte
public static PluginConfig fromConfiguration(Configuration
configuration) {
return new PluginConfig(
- getPluginsDirPath(configuration),
+ getPluginsDir().map(File::toPath),
CoreOptions.getParentFirstLoaderPatterns(configuration));
}
- private static Optional<Path> getPluginsDirPath(Configuration
configuration) {
- String pluginsDir =
configuration.getString(ConfigConstants.ENV_FLINK_PLUGINS_DIR, null);
- if (pluginsDir == null) {
- LOG.info("Environment variable [{}] is not set",
ConfigConstants.ENV_FLINK_PLUGINS_DIR);
- return Optional.empty();
- }
+ public static Optional<File> getPluginsDir() {
Review comment:
True, but this must not hold for every other setup.
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services