File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
projects/Test/Integration Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup Condition =" $([MSBuild]::IsOSPlatform('Windows'))" >
4
- <TargetFrameworks >net8 .0;net472</TargetFrameworks >
4
+ <TargetFrameworks >net9 .0;net472</TargetFrameworks >
5
5
<NoWarn >$(NoWarn);CA2007</NoWarn >
6
6
<TreatWarningsAsErrors >true</TreatWarningsAsErrors >
7
7
</PropertyGroup >
8
8
9
9
<PropertyGroup Condition =" !$([MSBuild]::IsOSPlatform('Windows'))" >
10
- <TargetFramework >net8 .0</TargetFramework >
10
+ <TargetFramework >net9 .0</TargetFramework >
11
11
<NoWarn >$(NoWarn);CA2007</NoWarn >
12
12
<TreatWarningsAsErrors >true</TreatWarningsAsErrors >
13
13
</PropertyGroup >
Original file line number Diff line number Diff line change @@ -472,7 +472,6 @@ public async Task TestCreateConnectionWithFailureRecordException()
472
472
new ( RabbitMQActivitySource . ConnectionSourceName , "tcp connection attempt" ) ;
473
473
tcpConnectionRecorder . VerifyParent = false ;
474
474
ConnectionFactory cf = CreateConnectionFactory ( ) ;
475
- cf . AutomaticRecoveryEnabled = true ;
476
475
var unreachablePort = 1234 ;
477
476
var ep = new AmqpTcpEndpoint ( "localhost" , unreachablePort ) ;
478
477
var exception = await Assert . ThrowsAsync < BrokerUnreachableException > ( ( ) =>
You can’t perform that action at this time.
0 commit comments