Browse Source

Merge pull request #10472 from miguelvazq/HPCC-18354

HPCC-18354 Unable to download Thor slave logs

Reviewed-By: Kevin Wang <kevin.wang@lexisnexis.com>
Reviewed-By: Richard Chapman <rchapman@hpccsystems.com>
Richard Chapman 7 years ago
parent
commit
eae7924ad0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      esp/src/eclwatch/LogWidget.js

+ 1 - 1
esp/src/eclwatch/LogWidget.js

@@ -112,7 +112,7 @@ define([
 
         _doDownload: function (zip) {
             var base = new ESPBase();
-            var name = this.params.getLogDirectory() + "/" + this.logTargetSelect.get("value");
+            var name = "//" + this.params.getNetaddress() + this.params.getLogDirectory() + "/" + this.logTargetSelect.get("value");
             var type = "tpcomp_log";
             window.open(base.getBaseURL("WsTopology") + "/SystemLog?Name=" + name + "&Type=" + type + "&Zip=" + zip, "_blank");
         },