Skip to content

Commit

Permalink
Activate Khepri on CI
Browse files Browse the repository at this point in the history
(cherry picked from commit bee5a7a)
  • Loading branch information
acogoluegnes committed Feb 18, 2025
1 parent 1e1ed98 commit fd2ca8b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions ci/start-broker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,6 @@ docker run -d --name rabbitmq \

wait_for_message rabbitmq "completed with"

docker exec rabbitmq rabbitmqctl enable_feature_flag --opt-in khepri_db
docker exec rabbitmq rabbitmq-diagnostics erlang_version
docker exec rabbitmq rabbitmqctl version
3 changes: 3 additions & 0 deletions ci/start-cluster.sh
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,9 @@ sleep 10

docker exec hare rabbitmqctl --node hare@$(hostname) await_startup

docker exec hare rabbitmqctl --node hare@$(hostname) enable_feature_flag --opt-in khepri_db
docker exec rabbitmq rabbitmqctl --node rabbit@$(hostname) enable_feature_flag --opt-in khepri_db

docker exec rabbitmq rabbitmq-diagnostics --node rabbit@$(hostname) erlang_version
docker exec rabbitmq rabbitmqctl --node rabbit@$(hostname) version
docker exec rabbitmq rabbitmqctl --node rabbit@$(hostname) status
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
import com.rabbitmq.client.test.BrokerTestCase;
import com.rabbitmq.client.test.TestUtils;
import com.rabbitmq.tools.Host;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

import java.io.IOException;
Expand Down Expand Up @@ -367,6 +368,7 @@ private void testClientNamedQueueRecoveryWith(String q, boolean noWait) throws I
}

// bug 26552
@Disabled
@Test public void clientNamedTransientAutoDeleteQueueAndBindingRecovery() throws IOException, InterruptedException, TimeoutException {
String q = UUID.randomUUID().toString();
String x = "tmp-fanout";
Expand Down

0 comments on commit fd2ca8b

Please sign in to comment.