diff options
| -rw-r--r-- | src/rabbit_channel.erl | 2 | ||||
| -rw-r--r-- | src/rabbit_reader.erl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/rabbit_channel.erl b/src/rabbit_channel.erl index d337df294f..cd4bfc12b9 100644 --- a/src/rabbit_channel.erl +++ b/src/rabbit_channel.erl @@ -499,7 +499,7 @@ handle_method(#'basic.get'{queue = QueueNameBin, Content), {noreply, State1#ch{next_tag = DeliveryTag + 1}}; empty -> - {reply, #'basic.get_empty'{cluster_id = <<>>}, State} + {reply, #'basic.get_empty'{}, State} end; handle_method(#'basic.consume'{queue = QueueNameBin, diff --git a/src/rabbit_reader.erl b/src/rabbit_reader.erl index c324d008a4..7c90d98024 100644 --- a/src/rabbit_reader.erl +++ b/src/rabbit_reader.erl @@ -645,7 +645,7 @@ handle_method0(#'connection.open'{virtual_host = VHostPath}, NewConnection = Connection#connection{vhost = VHostPath}, ok = send_on_channel0( Sock, - #'connection.open_ok'{known_hosts = <<>>}, + #'connection.open_ok'{}, Protocol), State#v1{connection_state = running, connection = NewConnection}; |
