diff options
| author | Simon MacMullen <simon@rabbitmq.com> | 2010-12-14 14:26:37 +0000 |
|---|---|---|
| committer | Simon MacMullen <simon@rabbitmq.com> | 2010-12-14 14:26:37 +0000 |
| commit | 507d6336279278daf715e2c16427c308bc97ae9a (patch) | |
| tree | 0ff78f5958844a9ba6b0ccd0d89304f7789fa448 /src | |
| parent | 9a88f0bdd5b566ad415a2311a83806b864de0ec0 (diff) | |
| download | rabbitmq-server-git-507d6336279278daf715e2c16427c308bc97ae9a.tar.gz | |
This is really a protocol error
Diffstat (limited to 'src')
| -rw-r--r-- | src/rabbit_auth_mechanism_plain.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rabbit_auth_mechanism_plain.erl b/src/rabbit_auth_mechanism_plain.erl index 664a4ae90f..e5f8f3e6a1 100644 --- a/src/rabbit_auth_mechanism_plain.erl +++ b/src/rabbit_auth_mechanism_plain.erl @@ -62,5 +62,5 @@ handle_response(Response, _State) -> {match, [User, Pass]} -> rabbit_access_control:check_user_pass_login(User, Pass); _ -> - {refused, io_lib:format("response ~p invalid", [Response])} + {protocol_error, "response ~p invalid", [Response]} end. |
