Skip to content

Commit 48793d5

Browse files
committed
Skip dotnet test
1 parent 3013a58 commit 48793d5

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

deps/rabbitmq_amqp1_0/test/system_SUITE.erl

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -115,10 +115,15 @@ build_maven_test_project(Config) ->
115115
%% -------------------------------------------------------------------
116116

117117
roundtrip(Config) ->
118-
run(Config, [
119-
{dotnet, "roundtrip"},
120-
{java, "RoundTripTest"}
121-
]).
118+
case ?config(amqp10_client_library, Config) of
119+
dotnet ->
120+
{skip, "TODO fix https://github.com/Azure/amqpnetlite/issues/575"};
121+
java ->
122+
run(Config, [
123+
{dotnet, "roundtrip"},
124+
{java, "RoundTripTest"}
125+
])
126+
end.
122127

123128
streams(Config) ->
124129
Ch = rabbit_ct_client_helpers:open_channel(Config),

deps/rabbitmq_stream/src/rabbit_stream_reader.erl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@
3131
stream :: stream(),
3232
reference :: undefined | publisher_reference(),
3333
leader :: pid(),
34+
%% We do not use atomics here for concurrent access. Instead, we use atomics
35+
%% to reduce memory copy overhead for record fields that change often.
3436
message_counters :: atomics:atomics_ref()}).
3537
-record(consumer_configuration,
3638
{socket :: rabbit_net:socket(), %% ranch_transport:socket(),

0 commit comments

Comments
 (0)