Skip to content

Commit

Permalink
fix: QueueException on test
Browse files Browse the repository at this point in the history
  • Loading branch information
loicmathieu committed Sep 12, 2024
1 parent 53be019 commit 7855e13
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import io.kestra.core.junit.annotations.KestraTest;
import io.kestra.core.models.executions.Execution;
import io.kestra.core.models.flows.State;
import io.kestra.core.queues.QueueException;
import io.kestra.core.repositories.LocalFlowRepositoryLoader;
import io.kestra.core.runners.RunContext;
import io.kestra.core.runners.RunContextFactory;
Expand Down Expand Up @@ -55,7 +56,7 @@ protected void init() throws IOException, URISyntaxException {
}

@Test
void flow() throws TimeoutException {
void flow() throws TimeoutException, QueueException {
EmbeddedServer embeddedServer = applicationContext.getBean(EmbeddedServer.class);
embeddedServer.start();

Expand Down

0 comments on commit 7855e13

Please sign in to comment.