Skip to content

Commit

Permalink
Merge pull request #960 from jglick/FlowDurabilityTest
Browse files Browse the repository at this point in the history
Diagnostics for `FlowDurabilityTest`
  • Loading branch information
jglick authored Dec 2, 2024
2 parents 9a09c44 + 5da0b18 commit 5198556
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,9 @@
import java.util.Random;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;
import java.util.logging.Level;
import org.junit.Assume;
import org.jvnet.hudson.test.LoggerRule;

/**
* Tests implementations designed to verify handling of the flow durability levels and persistence of pipeline state.
Expand All @@ -87,6 +89,9 @@ public class FlowDurabilityTest {
@Rule
public TimedRepeatRule repeater = new TimedRepeatRule();

@Rule
public LoggerRule logging = new LoggerRule().record(WorkflowRun.class, Level.FINE);

// Used in Race-condition/persistence fuzzing where we need to run repeatedly
static class TimedRepeatRule implements TestRule {

Expand Down

0 comments on commit 5198556

Please sign in to comment.