Skip to content

Commit

Permalink
Document RABBITMQ_METADATA_STORE in CONTRIBUTING.md
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelklishin committed Dec 19, 2024
1 parent f020eb2 commit 3ecbe7b
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,21 @@ gmake ct-rabbit_mgmt_http t="all_tests_with_prefix:users_test"
gmake ct-rabbit_mgmt_http t="all_tests_with_prefix:queues_test"
```

### Running Tests with a Specific Schema Data Store

Set `RABBITMQ_METADATA_STORE` to either `khepri` or `mnesia` to make the Common Test suites
use a specific [schema data store]() (metadata store):

``` shell
RABBITMQ_METADATA_STORE=khepri gmake ct-quorum_queue
```

Or, with Nu shell:

```nu
with-env {'RABBITMQ_METADATA_STORE': 'khepri'} { gmake ct-quorum_queue }
```


## Running Single Nodes from Source

Expand Down

0 comments on commit 3ecbe7b

Please sign in to comment.