You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: x-pack/plugin/transform/src/test/java/org/elasticsearch/xpack/transform/transforms/TransformPersistentTasksExecutorTests.java
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -85,7 +85,7 @@ public void testNodeAssignmentProblems() {
85
85
assertNull(assignment.getExecutorNode());
86
86
assertThat(
87
87
assignment.getExplanation(),
88
-
equalTo("Not starting transform [new-task-id], reasons [current-data-node-with-transform-disabled:transform not enabled]")
88
+
equalTo("Not starting transform [new-task-id], reasons [current-data-node-with-transform-disabled:not a transform node]")
89
89
);
90
90
91
91
// dedicated transform node
@@ -108,7 +108,7 @@ public void testNodeAssignmentProblems() {
108
108
assignment.getExplanation(),
109
109
equalTo(
110
110
"Not starting transform [new-task-id], reasons ["
111
-
+ "current-data-node-with-transform-disabled:transform not enabled"
111
+
+ "current-data-node-with-transform-disabled:not a transform node"
112
112
+ "|"
113
113
+ "past-data-node-1:node has version: 7.5.0 but transform requires at least 7.7.0"
114
114
+ "]"
@@ -154,7 +154,7 @@ public void testNodeAssignmentProblems() {
0 commit comments