Skip to content

Commit 48e8ab5

Browse files
committed
use connection domain
1 parent 8e75223 commit 48e8ab5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

deps/rabbitmq_stream/src/rabbit_stream_reader.erl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1007,7 +1007,7 @@ open(cast,
10071007
SendFileOct)
10081008
of
10091009
{error, closed} ->
1010-
rabbit_log:info("Stream protocol connection has been closed by peer", []),
1010+
rabbit_log_connection:info("Stream protocol connection has been closed by peer", []),
10111011
throw({stop, normal});
10121012
{error, Reason} ->
10131013
rabbit_log_connection:info("Error while sending chunks: ~p",
@@ -1825,7 +1825,7 @@ handle_frame_post_auth(Transport,
18251825

18261826
case send_chunks(Transport, ConsumerState, SendFileOct) of
18271827
{error, closed} ->
1828-
rabbit_log:info("Stream protocol connection has been closed by peer", []),
1828+
rabbit_log_connection:info("Stream protocol connection has been closed by peer", []),
18291829
throw({stop, normal});
18301830
{{segment, Segment1}, {credit, Credit1}} ->
18311831
ConsumerState1 =
@@ -1900,7 +1900,7 @@ handle_frame_post_auth(Transport,
19001900
SendFileOct)
19011901
of
19021902
{error, closed} ->
1903-
rabbit_log:info("Stream protocol connection has been closed by peer", []),
1903+
rabbit_log_connection:info("Stream protocol connection has been closed by peer", []),
19041904
throw({stop, normal});
19051905
{{segment, Segment1}, {credit, Credit1}} ->
19061906
Consumer1 =

0 commit comments

Comments
 (0)