Skip to content

Commit

Permalink
test(engine): exclude concurrency signal event test on cockroachdb
Browse files Browse the repository at this point in the history
related to CAM-14782, closes #2026
  • Loading branch information
tasso94 committed Sep 21, 2022
1 parent 1124bdb commit 8a912c0
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,10 @@
import org.camunda.bpm.engine.RuntimeService;
import org.camunda.bpm.engine.TaskService;
import org.camunda.bpm.engine.exception.NullValueException;
import org.camunda.bpm.engine.impl.db.sql.DbSqlSessionFactory;
import org.camunda.bpm.engine.impl.event.EventHandler;
import org.camunda.bpm.engine.impl.interceptor.CommandContext;
import org.camunda.bpm.engine.impl.test.RequiredDatabase;
import org.camunda.bpm.engine.runtime.Execution;
import org.camunda.bpm.engine.task.Task;
import org.camunda.bpm.engine.test.Deployment;
Expand Down Expand Up @@ -76,7 +78,8 @@ public void tearDown() {
@Test
@Deployment(resources = {
"org/camunda/bpm/engine/test/bpmn/event/signal/SignalEventConcurrencyTest.testSignalWithCompletedExecution.bpmn20.xml" })
public void testSignalWithCompletedExecution() {
@RequiredDatabase(excludes = DbSqlSessionFactory.CRDB)
public void shouldThrowExceptionWhenSignallingWithCompletedExecution() {

runtimeService.startProcessInstanceByKey("mainProcess");

Expand Down

0 comments on commit 8a912c0

Please sign in to comment.