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_r340616674
 
 

 ##########
 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:
   I deliberately used `File` in order to express that the directory needs to 
be local to the process. Happy to change it at a later point when we decide 
that the plugins directory can reside on any filesystem.

----------------------------------------------------------------
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

Reply via email to