azkaban-developers

Details

diff --git a/src/main/java/azkaban/execapp/FlowRunner.java b/src/main/java/azkaban/execapp/FlowRunner.java
index 6aba34a..fd8f116 100644
--- a/src/main/java/azkaban/execapp/FlowRunner.java
+++ b/src/main/java/azkaban/execapp/FlowRunner.java
@@ -975,8 +975,6 @@ public class FlowRunner extends EventHandler implements Runnable {
 		}
 		flow.setUpdateTime(System.currentTimeMillis());
 		flow.setEndTime(-1);
-		flow.setStartTime(maxStartTime);
-		
 		logger.info("Resetting flow '" + flow.getNestedId() + "' from " + oldFlowState + " to " + flow.getStatus());
 	}
 	
diff --git a/src/main/java/azkaban/webapp/AzkabanWebServer.java b/src/main/java/azkaban/webapp/AzkabanWebServer.java
index e072269..a0cacc8 100644
--- a/src/main/java/azkaban/webapp/AzkabanWebServer.java
+++ b/src/main/java/azkaban/webapp/AzkabanWebServer.java
@@ -162,7 +162,7 @@ public class AzkabanWebServer extends AzkabanServer {
 	public static AzkabanWebServer getInstance() {
 		return app;
 	}
-	
+
 	/**
 	 * Constructor usually called by tomcat AzkabanServletContext to create the
 	 * initial server
diff --git a/src/web/js/azkaban/view/flow-execution-list.js b/src/web/js/azkaban/view/flow-execution-list.js
index 5a844a7..f99fc61 100644
--- a/src/web/js/azkaban/view/flow-execution-list.js
+++ b/src/web/js/azkaban/view/flow-execution-list.js
@@ -145,7 +145,7 @@ azkaban.ExecutionListView = Backbone.View.extend({
 						$(attemptBox).bind("contextmenu", attemptRightClick);
 						
 						$(progressBar).before(attemptBox);
-						attemptBox.job = nodeId;
+						attemptBox.job = node.id;
 						attemptBox.attempt = a;
 					}
 				}