You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by ka...@apache.org on 2017/07/03 14:41:39 UTC

[21/40] storm git commit: [STORM-2498] Fix Download Full File link in 1.x branch

[STORM-2498] Fix Download Full File link in 1.x branch


Project: http://git-wip-us.apache.org/repos/asf/storm/repo
Commit: http://git-wip-us.apache.org/repos/asf/storm/commit/a265929a
Tree: http://git-wip-us.apache.org/repos/asf/storm/tree/a265929a
Diff: http://git-wip-us.apache.org/repos/asf/storm/diff/a265929a

Branch: refs/heads/1.1.x-branch
Commit: a265929a5ff94fa41a982b3c574cbc6b96f38601
Parents: 711115f
Author: Arun Mahadevan <ar...@apache.org>
Authored: Wed May 3 13:23:24 2017 +0530
Committer: Jungtaek Lim <ka...@gmail.com>
Committed: Thu Jun 29 16:42:43 2017 +0900

----------------------------------------------------------------------
 storm-core/src/clj/org/apache/storm/daemon/logviewer.clj | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/storm/blob/a265929a/storm-core/src/clj/org/apache/storm/daemon/logviewer.clj
----------------------------------------------------------------------
diff --git a/storm-core/src/clj/org/apache/storm/daemon/logviewer.clj b/storm-core/src/clj/org/apache/storm/daemon/logviewer.clj
index a5b2ee8..d7b21de 100644
--- a/storm-core/src/clj/org/apache/storm/daemon/logviewer.clj
+++ b/storm-core/src/clj/org/apache/storm/daemon/logviewer.clj
@@ -396,7 +396,7 @@
                         "Next" :enabled (> next-start start))])]]))
 
 (defn- download-link [fname]
-  [[:p (link-to (url-format "/download?file=%s" (to-array [fname])) "Download Full File")]])
+  [[:p (link-to (url-format "/download?file=%s" fname) "Download Full File")]])
 
 (defn- daemon-download-link [fname]
   [[:p (link-to (url-format "/daemondownload/%s" fname) "Download Full File")]])