浏览代码

AMBARI-4256. Time interval between batches in a request_schedule should be in seconds. Naming fix. (swagle)

Siddharth Wagle 11 年之前
父节点
当前提交
19e31745a4

+ 2 - 2
ambari-server/src/main/java/org/apache/ambari/server/orm/entities/RequestScheduleEntity.java

@@ -152,8 +152,8 @@ public class RequestScheduleEntity {
     return batchSeparationInSeconds;
   }
 
-  public void setBatchSeparationInSeconds(Integer batchSeparationInMinutes) {
-    this.batchSeparationInSeconds = batchSeparationInMinutes;
+  public void setBatchSeparationInSeconds(Integer batchSeparationInSeconds) {
+    this.batchSeparationInSeconds = batchSeparationInSeconds;
   }
 
   public Integer getBatchTolerationLimit() {