Github user d2r commented on a diff in the pull request:
https://github.com/apache/incubator-storm/pull/188#discussion_r14839191
--- Diff: storm-core/src/clj/backtype/storm/daemon/supervisor.clj ---
@@ -522,6 +523,7 @@
(FileUtils/copyDirectory (File. master-code-dir) (File. stormroot))
(let [classloader (.getContextClassLoader (Thread/currentThread))
resources-jar (resources-jar)
+ uri (URI. (str (.getResource classloader RESOURCES-SUBDIR)))
--- End diff --
Could do:
```Clojure
;; Work-around for JDK-4466485
uri (if-let [url-str (str (.getResource classloader RESOURCES-DIR))]
(URI. url-str))
```
Then replace all `url` with `uri` below.
---
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 [email protected] or file a JIRA ticket
with INFRA.
---