We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd4955d commit 2153f08Copy full SHA for 2153f08
tests/integration/compose/docker_compose_rabbitmq.yml
@@ -20,6 +20,8 @@ services:
20
- /misc/rabbitmq/server-key.pem:/etc/rabbitmq/server-key.pem
21
- /misc/rabbitmq/enabled_plugins:/etc/rabbitmq/enabled_plugins
22
# https://www.rabbitmq.com/docs/monitoring#health-checks
23
+ # Run with strace to disable fsync/fdatasync for faster test execution
24
+ command: sh -c "apk add --no-cache strace && exec strace -qq -f -e inject=fsync,fdatasync:retval=0 -e exit_group -e signal=9 docker-entrypoint.sh rabbitmq-server"
25
healthcheck:
26
test: rabbitmq-diagnostics -q ping
27
interval: 10s
0 commit comments