Skip to content

Commit 478291b

Browse files
author
Efim Poberezkin
committed
Unignored tests for EpochCoordinator sequencing of late epochs
1 parent 0a3409a commit 478291b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sql/core/src/test/scala/org/apache/spark/sql/streaming/continuous/EpochCoordinatorSuite.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ class EpochCoordinatorSuite
120120
verifyCommitsInOrderOf(List(1, 2))
121121
}
122122

123-
ignore("consequent epochs, a message for epoch k arrives after messages for epoch (k + 1)") {
123+
test("consequent epochs, a message for epoch k arrives after messages for epoch (k + 1)") {
124124
setWriterPartitions(2)
125125
setReaderPartitions(2)
126126

@@ -141,7 +141,7 @@ class EpochCoordinatorSuite
141141
verifyCommitsInOrderOf(List(1, 2))
142142
}
143143

144-
ignore("several epochs, messages arrive in order 1 -> 3 -> 4 -> 2") {
144+
test("several epochs, messages arrive in order 1 -> 3 -> 4 -> 2") {
145145
setWriterPartitions(1)
146146
setReaderPartitions(1)
147147

@@ -162,7 +162,7 @@ class EpochCoordinatorSuite
162162
verifyCommitsInOrderOf(List(1, 2, 3, 4))
163163
}
164164

165-
ignore("several epochs, messages arrive in order 1 -> 3 -> 5 -> 4 -> 2") {
165+
test("several epochs, messages arrive in order 1 -> 3 -> 5 -> 4 -> 2") {
166166
setWriterPartitions(1)
167167
setReaderPartitions(1)
168168

0 commit comments

Comments
 (0)