Github user revans2 commented on a diff in the pull request:

    https://github.com/apache/storm/pull/120#discussion_r20513760
  
    --- Diff: storm-core/src/jvm/backtype/storm/utils/Utils.java ---
    @@ -122,36 +124,64 @@ public static void sleep(long millis) {
             }
         }
     
    +    // Will try to locate the config file in class path first, then will 
search local path
    +    // For example, we can use temporary config path like this: storm jar 
job.jar --config /tmp/xx.yaml
         public static Map findAndReadConfigFile(String name, boolean 
mustExist) {
    +        InputStream in = null;
             try {
    -            HashSet<URL> resources = new HashSet<URL>(findResources(name));
    -            if(resources.isEmpty()) {
    -                if(mustExist) throw new RuntimeException("Could not find 
config file on classpath " + name);
    -                else return new HashMap();
    -            }
    -            if(resources.size() > 1) {
    -                throw new RuntimeException("Found multiple " + name + " 
resources. You're probably bundling the Storm jars with your topology jar. "
    -                  + resources);
    -            }
    -            URL resource = resources.iterator().next();
    -            Yaml yaml = new Yaml(new SafeConstructor());
    -            Map ret = null;
    -            InputStream input = resource.openStream();
    -            try {
    -                ret = (Map) yaml.load(new InputStreamReader(input));
    -            } finally {
    -                input.close();
    +            in = getConfigFileInputStream(name);
    +            if (null != in) {
    +                Yaml yaml = new Yaml();
    --- End diff --
    
    Can we change this to ```Yaml yaml = new Yaml(new SafeConstructor());```


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to