Skip to content

Commit ba9c43d

Browse files
committed
Fix a dialyzer error revealed by otp 25.3
1 parent 3ebfa25 commit ba9c43d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

deps/rabbitmq_amqp1_0/src/rabbit_amqp1_0_reader.erl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -665,8 +665,7 @@ auth_phase_1_0(Response,
665665
rabbit_core_metrics:auth_attempt_succeeded(<<>>, <<>>, amqp10),
666666
Secure = #'v1_0.sasl_challenge'{challenge = {binary, Challenge}},
667667
ok = send_on_channel0(Sock, Secure, rabbit_amqp1_0_sasl),
668-
State#v1{connection = Connection =
669-
#v1_connection{auth_state = AuthState1}};
668+
State#v1{connection = Connection#v1_connection{auth_state = AuthState1}};
670669
{ok, User = #user{username = Username}} ->
671670
case rabbit_access_control:check_user_loopback(Username, Sock) of
672671
ok ->

0 commit comments

Comments
 (0)