Skip to content

Commit

Permalink
Correct test tags
Browse files Browse the repository at this point in the history
  • Loading branch information
kagkarlsson committed Sep 7, 2023
1 parent 8a93a7f commit bc823d6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,8 @@ Fetched executions are already locked/picked for this scheduler-instance thus sa
(i.e. keep threads busy), set to for example `1.0, 4.0`. Currently hearbeats are not updated for picked executions
in queue (applicable if `upperLimitFractionOfThreads > 1.0`). If they stay there for more than
`4 * hearbeat-interval` (default `20m`), not starting execution, they will be detected as _dead_ and likely be
unlocked again (determined by `DeadExecutionHandler`). Currently supported by **postgres**.
unlocked again (determined by `DeadExecutionHandler`). Currently supported by **postgres**. **sql-server** also supports
this, but testing has shown this is prone to deadlocks and thus not recommended until understood/resolved.


#### Less commonly tuned
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import org.testcontainers.junit.jupiter.Testcontainers;

@Testcontainers
@Tag("concurrencyload")
@Tag("compatibility-cluster")
public class MssqlClusterTest {
public static final int NUMBER_OF_THREADS = 10;
private static final Logger DEBUG_LOG = LoggerFactory.getLogger(MssqlClusterTest.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

@Tag("concurrencyload")
@Tag("compatibility-cluster")
public class PostgresClusterTest {

private static final Logger DEBUG_LOG = LoggerFactory.getLogger(PostgresClusterTest.class);
Expand Down

0 comments on commit bc823d6

Please sign in to comment.