Github user revans2 commented on a diff in the pull request: https://github.com/apache/storm/pull/1139#discussion_r54165835 --- Diff: storm-core/src/clj/org/apache/storm/ui/core.clj --- @@ -134,14 +136,16 @@ (defn logviewer-link [host fname secure?] (if (and secure? (*STORM-CONF* LOGVIEWER-HTTPS-PORT)) - (url-format "https://%s:%s/log?file=%s" - host - (*STORM-CONF* LOGVIEWER-HTTPS-PORT) - fname) - (url-format "http://%s:%s/log?file=%s" - host - (*STORM-CONF* LOGVIEWER-PORT) - fname))) + (UIHelpers/urlFormat "https://%s:%s/log?file=%s" + (to-array + [host + (*STORM-CONF* LOGVIEWER-HTTPS-PORT) + fname])) + (UIHelpers/urlFormat "http://%s:%s/log?file=%s" + (to-array + [host + (*STORM-CONF* LOGVIEWER-PORT) + fname])))) --- End diff -- This is the line that I was getting the exception on. I will investigate a bit more to see if I can understand what is happening.
--- 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. ---