OOZIE-2579 Bulk kill tests in TestBulkWorkflowXCommand might fail because of a race condition (pbacsko via rkanter)
diff --git a/core/src/test/java/org/apache/oozie/test/XDataTestCase.java b/core/src/test/java/org/apache/oozie/test/XDataTestCase.java
index 081d2f1..ea778bd 100644
--- a/core/src/test/java/org/apache/oozie/test/XDataTestCase.java
+++ b/core/src/test/java/org/apache/oozie/test/XDataTestCase.java
@@ -1446,7 +1446,7 @@
         action.setSlaXml("<sla></sla>");
         action.setData("dummy data");
         action.setStats("dummy stats");
-        action.setExternalChildIDs("00000001-dummy-oozie-wrkf-W");
+        action.setExternalChildIDs("job_201601011800_0001");
         action.setRetries(2);
         action.setUserRetryCount(1);
         action.setUserRetryMax(2);
diff --git a/release-log.txt b/release-log.txt
index 2d40dea..2036dbc 100644
--- a/release-log.txt
+++ b/release-log.txt
@@ -1,5 +1,6 @@
 -- Oozie 4.3.0 release (trunk - unreleased)
 
+OOZIE-2579 Bulk kill tests in TestBulkWorkflowXCommand might fail because of a race condition (pbacsko via rkanter)
 OOZIE-2587 Disable SchedulerService on certain tests (pbacsko via rkanter)
 OOZIE-2603 Give thread pools a meaningful name in CallableQueueService and SchedulerService (pbacsko via rkanter)
 OOZIE-2436 Fork/join workflow fails with "oozie.action.yarn.tag must not be null" (puru)