Luke Bakken

Results 118 issues of Luke Bakken

This project has enabled me to quickly come up with a reproduction scenario here: https://github.com/erlang/otp/issues/5961#issuecomment-1139135882 🎉

Fixes #5471 Start with `RABBITMQ_NODE_PORT`

Reproduction steps can be found here: https://github.com/rabbitmq/rabbitmq-server/issues/3537#issuecomment-1209877492 `RABBITMQ_NODE_PORT` needs to be added to the list of env vars passed to `erlsrv.exe`. I will thoroughly review the startup scripts to hopefully...

### Discussed in https://github.com/rabbitmq/rabbitmq-server/discussions/5095 See the following project for a script to reproduce the issue (requires `asdf` but it could be easily adapted to use `kerl`): https://github.com/lukebakken/rabbitmq-server-5086 Note that the...

Reproduction steps: * Create two RabbitMQ environments. I'll call them `rmq-us` for the upstream, `rmq-ds` for the downstream. * `rmq-us` can be a single node, `rmq-ds` must be a cluster....

`rabbitmq-min.conf`: ``` loopback_users = none log.console = true ``` RabbitMQ 3.8.34: ``` ## ## RabbitMQ 3.8.34 ## ## ########## Copyright (c) 2007-2022 VMware, Inc. or its affiliates. ###### ## ##########...

Related to #3803 See https://groups.google.com/g/rabbitmq-users/c/Toq7BRq2Npk The mailing list user reports a case where an LDAP password is logged as part of `mfargs` to `rabbit_channel:start_link`. It appears that the `impl` field...

Prior to https://github.com/rabbitmq/rabbitmq-server/issues/4303, setting `RABBITMQ_LOGS=-` would also send the upgrade log file to stdout. We should allow using configuration entries like this: ``` log.upgrade.file = - log.upgrade.file = stdout ```...

Related to these items: * https://github.com/rabbitmq/rabbitmq-server/issues/2544 * https://pivotal-esc.atlassian.net/browse/VESC-1034 Currently, if you federate an exchange the upstream node creates an internal queue from which the downstream consumes. These internal queues _can_...

See the following: https://github.com/rabbitmq/rabbitmq-website/issues/1366 https://github.com/rabbitmq/rabbitmq-server/discussions/4229 The Consul peer discovery plugin requires that a user set `cluster_formation.consul.use_longname` even though that could be determined by calling `rabbit_nodes:name_type/0`. There may be other places...