Hi there,
I've been playing around with the new stream feature in 3.9.x
Locally, I can connect to the new stream port perfectly fine with the standard guest user. But in a cluster I upgraded to 3.9.4, I'm unable to connect.
I've tried this with both the go client, and java client and am getting the same results. And since it works on a local docker/rabbit cluster, I'm guessing there's something about my server configs that I'm overlooking.
The client logs are..
```
2021/08/18 13:29:35 [warn] - error removing heartbeat: Response #{id} not found 2021/08/18 13:29:45 [error] - timeout 10000000000 ms - waiting Code, operation: commandSaslAuthenticate
2021/08/18 13:29:45 timeout 10000000000 ms - waiting Code, operation: commandSaslAuthenticate
```
While I believe the relevant log lines from the server when attempting connection are..
```
2021-08-18 09:25:29.836551-06:00 [error] <0.31492.2550> crasher:
2021-08-18 09:25:29.836551-06:00 [error] <0.31492.2550> initial call: rabbit_stream_reader:init/1
2021-08-18 09:25:29.836551-06:00 [error] <0.31492.2550> pid: <0.31492.2550>
2021-08-18 09:25:29.836551-06:00 [error] <0.31492.2550> registered_name: []
2021-08-18 09:25:29.836551-06:00 [error] <0.31492.2550> exception error: bad argument
2021-08-18 09:25:29.836551-06:00 [error] <0.31492.2550> in function list_to_binary/1
2021-08-18 09:25:29.836551-06:00 [error] <0.31492.2550> called as list_to_binary({error,einval})
2021-08-18 09:25:29.836551-06:00 [error] <0.31492.2550> *** argument 1: not an iolist term
2021-08-18 09:25:29.836551-06:00 [error] <0.31492.2550> in call from rabbit_stream_reader:handle_frame_pre_auth/4 (src/rabbit_stream_reader.erl, line 1204)
2021-08-18 09:25:29.836551-06:00 [error] <0.31492.2550> in call from lists:foldl/3 (lists.erl, line 1267)
2021-08-18 09:25:29.836551-06:00 [error] <0.31492.2550> in call from rabbit_stream_reader:handle_info/3 (src/rabbit_stream_reader.erl, line 426)
2021-08-18 09:25:29.836551-06:00 [error] <0.31492.2550> in call from gen_statem:loop_state_callback/11 (gen_statem.erl, line 1194)
2021-08-18 09:25:29.836551-06:00 [error] <0.31492.2550> ancestors: [<0.23231.2550>,<0.752.0>,<0.751.0>,<0.750.0>,<0.748.0>,
2021-08-18 09:25:29.836551-06:00 [error] <0.31492.2550> <0.747.0>,rabbit_stream_sup,<0.743.0>]
2021-08-18 09:25:29.836551-06:00 [error] <0.31492.2550> message_queue_len: 0
```
The `commandSaslAuthenticate` made me think it was a user/pass issue in the provided URI, but I'm able to use the same credentials on the standard AMQP port perfectly fine.
One difference, is that the non local cluster, uses the LDAP plugin. I've tried disabling that temporarily to no avail.
This is via a non-TLS connection at the moment. I can also confirm the port is being listened to through netstat (I just have it set to standard 5552).
If anyone has any ideas I'd be very appreciate of any help!