Skip to content

Commit ae967ef

Browse files
authored
Fix flaky test testStaticWithSideEffectFullCompletion (#357)
* Enable info logs and stack trace in github action * update testStaticWithSideEffectFullCompletion
1 parent 3b8abce commit ae967ef

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

.github/scripts/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ if [ -z "$VERSION" ]; then
2222
fi
2323

2424
# Run the actual build
25-
./gradlew -Prelease build
25+
./gradlew -Prelease build -is

subprojects/parseq/src/test/java/com/linkedin/parseq/AbstractTaskTest.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,6 @@ public void testStaticWithSideEffectFullCompletion() throws Exception {
392392
Task<Void> sideEffect = Task.withSideEffect(() -> slowSideEffect);
393393

394394
run(sideEffect);
395-
assertFalse(sideEffect.isDone());
396395
sideEffect.await();
397396
assertTrue(sideEffect.isDone());
398397
assertNull(sideEffect.get());

0 commit comments

Comments
 (0)