You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@slider.apache.org by st...@apache.org on 2014/11/25 20:21:41 UTC

[6/7] incubator-slider git commit: SLIDER-673 serialized application report saved with lookup operation doesn't save URLs

SLIDER-673 serialized application report saved with lookup operation doesn't save URLs


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

Branch: refs/heads/feature/SLIDER-319_codahale_metrics
Commit: a2966af9a75551402a045a9daf62ca82069904f2
Parents: 524446d
Author: Steve Loughran <st...@apache.org>
Authored: Mon Nov 24 17:05:17 2014 +0000
Committer: Steve Loughran <st...@apache.org>
Committed: Tue Nov 25 19:20:47 2014 +0000

----------------------------------------------------------------------
 .../org/apache/slider/core/launch/SerializedApplicationReport.java | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-slider/blob/a2966af9/slider-core/src/main/java/org/apache/slider/core/launch/SerializedApplicationReport.java
----------------------------------------------------------------------
diff --git a/slider-core/src/main/java/org/apache/slider/core/launch/SerializedApplicationReport.java b/slider-core/src/main/java/org/apache/slider/core/launch/SerializedApplicationReport.java
index 116aeb3..c1880b5 100644
--- a/slider-core/src/main/java/org/apache/slider/core/launch/SerializedApplicationReport.java
+++ b/slider-core/src/main/java/org/apache/slider/core/launch/SerializedApplicationReport.java
@@ -81,6 +81,8 @@ public class SerializedApplicationReport {
     FinalApplicationStatus appStatus = report.getFinalApplicationStatus();
     this.finalStatus = appStatus == null ? "" : appStatus.toString();
     this.progress = report.getProgress();
+    this.url = report.getTrackingUrl();
+    this.origTrackingUrl= report.getTrackingUrl();
   }
 
   @Override