File tree Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -115,10 +115,15 @@ build_maven_test_project(Config) ->
115
115
% % -------------------------------------------------------------------
116
116
117
117
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 .
122
127
123
128
streams (Config ) ->
124
129
Ch = rabbit_ct_client_helpers :open_channel (Config ),
Original file line number Diff line number Diff line change 31
31
stream :: stream (),
32
32
reference :: undefined | publisher_reference (),
33
33
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.
34
36
message_counters :: atomics :atomics_ref ()}).
35
37
-record (consumer_configuration ,
36
38
{socket :: rabbit_net :socket (), % % ranch_transport:socket(),
You can’t perform that action at this time.
0 commit comments