Skip to content

Commit 1a034d9

Browse files
authored
Remove support email from error messages (#4713)
1 parent cebaee7 commit 1a034d9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/ServiceControl.Transports.ASBS/DeadLetterQueueCheck.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public override async Task<CheckResult> PerformCheck(CancellationToken cancellat
3333

3434
if (deadLetterMessageCount > 0)
3535
{
36-
var result = $"{deadLetterMessageCount} messages in the Dead Letter Queue '{stagingQueue}'. This could indicate a problem with ServiceControl's retries. Please submit a support ticket to Particular using [email protected] if you would like help from our engineers to ensure no message loss while resolving these dead letter messages.";
36+
var result = $"{deadLetterMessageCount} messages in the Dead Letter Queue '{stagingQueue}'. This could indicate a problem with ServiceControl's retries. Please submit a support ticket to Particular if you would like help from our engineers to ensure no message loss while resolving these dead letter messages.";
3737

3838
Logger.Warn(result);
3939
return CheckResult.Failed(result);

src/ServiceControl.Transports.Msmq/DeadLetterQueueCheck.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public override Task<CheckResult> PerformCheck(CancellationToken cancellationTok
7575

7676
static string MessagesInDeadLetterQueue(float currentValue)
7777
{
78-
return $"{currentValue} messages in the Dead Letter Queue on {Environment.MachineName}. This could indicate a problem with ServiceControl's retries. Please submit a support ticket to Particular using [email protected] if you would like help from our engineers to ensure no message loss while resolving these dead letter messages.";
78+
return $"{currentValue} messages in the Dead Letter Queue on {Environment.MachineName}. This could indicate a problem with ServiceControl's retries. Please submit a support ticket to Particular if you would like help from our engineers to ensure no message loss while resolving these dead letter messages.";
7979
}
8080

8181
static string CounterMightBeLocalized(string categoryName, string counterName, string counterInstanceName)

0 commit comments

Comments
 (0)