Skip to content

Commit

Permalink
update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
mookid8000 committed Mar 23, 2021
1 parent 630471c commit a8d0c83
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,9 @@
## 7.3.0
* Update RabbitMQ client to 6.0 - thanks [mathiasnohall]

## 7.3.1-b1
## 7.3.1-b2
* Add code to manually transfer basic auth credentials from connection string to connection factory
* In RabbitMqTransport.Receive call QueueDeclarePassive only if declare input queue is true - thanks [marcoariboni]

---

Expand All @@ -111,6 +112,7 @@
[jarikp]: https://github.com/jarikp
[K3llr]: https://github.com/K3llr
[kyrrem]: https://github.com/kyrrem
[marcoariboni]: https://github.com/marcoariboni
[mathiasnohall]: https://github.com/mathiasnohall
[michalsteyn]: https://github.com/michalsteyn
[nebelx]: https://github.com/nebelx
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System;

using System;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
Expand Down Expand Up @@ -39,7 +40,7 @@ public async Task CanDoWhatTheFixtureSays()

await bus.SendLocal("Hej søtte", new Dictionary<string, string> {{headerKey, null}});

nullHeaderSuccessfullyReceived.WaitOrDie(TimeSpan.FromSeconds(3));
nullHeaderSuccessfullyReceived.WaitOrDie(TimeSpan.FromSeconds(5));
}
}
}
2 changes: 1 addition & 1 deletion Rebus.RabbitMq.Tests/Rebus.RabbitMq.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Rebus.RabbitMq.Tests</RootNamespace>
<AssemblyName>Rebus.RabbitMq.Tests</AssemblyName>
<TargetFrameworks>net461;netcoreapp2.1</TargetFrameworks>
<TargetFrameworks>netcoreapp3.1</TargetFrameworks>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<LangVersion>latest</LangVersion>
</PropertyGroup>
Expand Down

0 comments on commit a8d0c83

Please sign in to comment.