Skip to content

Commit

Permalink
fix(protocols): fix typo in queue prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
thomashilzendegen committed Feb 29, 2024
1 parent 695c7fb commit e4b07eb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ The following is the list of supported scopes:
- **management**
- **statistics**
- **interceptor**
- **protocols**
- _TBD_

There are currently a few exceptions to the "use package name" rule:
Expand Down
8 changes: 4 additions & 4 deletions src/Thinktecture.Relay.Server.Protocols.RabbitMq/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,18 @@ internal static class Constants
/// <summary>
/// The prefix for request queues.
/// </summary>
/// <remarks>Should be followed by a space and the tenant name.</remarks>
/// <remarks>Should be followed by a space and the tenant name. These queues won't be removed after creation.</remarks>
public const string RequestQueuePrefix = "Requests";

/// <summary>
/// The prefix for response queues.
/// </summary>
/// <remarks>Should be followed by a space and the origin id.</remarks>
/// <remarks>Should be followed by a space and the origin id. These queues will be removed when the owning origin is shut down.</remarks>
public const string ResponseQueuePrefix = "Responses";

/// <summary>
/// The prefix for acknowledge queues.
/// </summary>
/// <remarks>Should be followed by a space and the origin id.</remarks>
public const string AcknowledgeQueuePrefix = "Acknowledges";
/// <remarks>Should be followed by a space and the origin id. These queues will be removed when the owning origin is shut down.</remarks>
public const string AcknowledgeQueuePrefix = "Acknowledgements";
}

0 comments on commit e4b07eb

Please sign in to comment.