Browse Source

set default exchange name to 'cap.default.topic'.

master
yangxiaodong 7 years ago
parent
commit
7454bf53a5
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/DotNetCore.CAP.RabbitMQ/CAP.RabbiMQOptions.cs

+ 2
- 2
src/DotNetCore.CAP.RabbitMQ/CAP.RabbiMQOptions.cs View File

@@ -29,9 +29,9 @@ namespace DotNetCore.CAP
public const string DefaultVHost = "/";

/// <summary>
/// Default exchange name (value: "cap").
/// Default exchange name (value: "cap.default.topic").
/// </summary>
public const string DefaultExchangeName = "cap";
public const string DefaultExchangeName = "cap.default.topic";

/// <summary>The host to connect to.</summary>
public string HostName { get; set; } = "localhost";


Loading…
Cancel
Save