Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
services.AddIntegrationEventPublisher<FailedMessageGroupBatchArchivedPublisher>();
services.AddIntegrationEventPublisher<FailedMessageGroupBatchUnarchivedPublisher>();
services.AddIntegrationEventPublisher<FailedMessagesUnarchivedPublisher>();
services.AddIntegrationEventPublisher<MessageFailedPublisher>();

Check failure on line 118 in src/ServiceControl/Recoverability/RecoverabilityComponent.cs

View workflow job for this annotation

GitHub Actions / Windows-Compile

The type or namespace name 'MessageFailedPublisher' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 118 in src/ServiceControl/Recoverability/RecoverabilityComponent.cs

View workflow job for this annotation

GitHub Actions / Windows-Compile

The type or namespace name 'MessageFailedPublisher' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 118 in src/ServiceControl/Recoverability/RecoverabilityComponent.cs

View workflow job for this annotation

GitHub Actions / windows-installers / build

The type or namespace name 'MessageFailedPublisher' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 118 in src/ServiceControl/Recoverability/RecoverabilityComponent.cs

View workflow job for this annotation

GitHub Actions / windows-installers / build

The type or namespace name 'MessageFailedPublisher' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 118 in src/ServiceControl/Recoverability/RecoverabilityComponent.cs

View workflow job for this annotation

GitHub Actions / Windows-Raven

The type or namespace name 'MessageFailedPublisher' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 118 in src/ServiceControl/Recoverability/RecoverabilityComponent.cs

View workflow job for this annotation

GitHub Actions / Windows-Raven

The type or namespace name 'MessageFailedPublisher' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 118 in src/ServiceControl/Recoverability/RecoverabilityComponent.cs

View workflow job for this annotation

GitHub Actions / Linux-Compile

The type or namespace name 'MessageFailedPublisher' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 118 in src/ServiceControl/Recoverability/RecoverabilityComponent.cs

View workflow job for this annotation

GitHub Actions / Linux-Compile

The type or namespace name 'MessageFailedPublisher' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 118 in src/ServiceControl/Recoverability/RecoverabilityComponent.cs

View workflow job for this annotation

GitHub Actions / Windows-DefaultCore

The type or namespace name 'MessageFailedPublisher' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 118 in src/ServiceControl/Recoverability/RecoverabilityComponent.cs

View workflow job for this annotation

GitHub Actions / Windows-DefaultCore

The type or namespace name 'MessageFailedPublisher' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 118 in src/ServiceControl/Recoverability/RecoverabilityComponent.cs

View workflow job for this annotation

GitHub Actions / Linux-DefaultCore

The type or namespace name 'MessageFailedPublisher' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 118 in src/ServiceControl/Recoverability/RecoverabilityComponent.cs

View workflow job for this annotation

GitHub Actions / Linux-DefaultCore

The type or namespace name 'MessageFailedPublisher' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 118 in src/ServiceControl/Recoverability/RecoverabilityComponent.cs

View workflow job for this annotation

GitHub Actions / Windows-SqlServer

The type or namespace name 'MessageFailedPublisher' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 118 in src/ServiceControl/Recoverability/RecoverabilityComponent.cs

View workflow job for this annotation

GitHub Actions / Windows-SqlServer

The type or namespace name 'MessageFailedPublisher' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 118 in src/ServiceControl/Recoverability/RecoverabilityComponent.cs

View workflow job for this annotation

GitHub Actions / Linux-SqlServer

The type or namespace name 'MessageFailedPublisher' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 118 in src/ServiceControl/Recoverability/RecoverabilityComponent.cs

View workflow job for this annotation

GitHub Actions / Linux-SqlServer

The type or namespace name 'MessageFailedPublisher' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 118 in src/ServiceControl/Recoverability/RecoverabilityComponent.cs

View workflow job for this annotation

GitHub Actions / Linux-PostgreSql

The type or namespace name 'MessageFailedPublisher' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 118 in src/ServiceControl/Recoverability/RecoverabilityComponent.cs

View workflow job for this annotation

GitHub Actions / Linux-PostgreSql

The type or namespace name 'MessageFailedPublisher' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 118 in src/ServiceControl/Recoverability/RecoverabilityComponent.cs

View workflow job for this annotation

GitHub Actions / Windows-PostgreSql

The type or namespace name 'MessageFailedPublisher' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 118 in src/ServiceControl/Recoverability/RecoverabilityComponent.cs

View workflow job for this annotation

GitHub Actions / Windows-PostgreSql

The type or namespace name 'MessageFailedPublisher' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 118 in src/ServiceControl/Recoverability/RecoverabilityComponent.cs

View workflow job for this annotation

GitHub Actions / Linux-Raven

The type or namespace name 'MessageFailedPublisher' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 118 in src/ServiceControl/Recoverability/RecoverabilityComponent.cs

View workflow job for this annotation

GitHub Actions / Linux-Raven

The type or namespace name 'MessageFailedPublisher' could not be found (are you missing a using directive or an assembly reference?)
services.AddIntegrationEventPublisher<MessageFailureResolvedByRetryPublisher>();
services.AddIntegrationEventPublisher<MessageFailureResolvedManuallyPublisher>();
services.AddIntegrationEventPublisher<MessageEditedAndRetriedPublisher>();
Expand All @@ -125,7 +125,6 @@
services.AddEventLogMapping<FailedMessageGroupArchivedDefinition>();
services.AddEventLogMapping<FailedMessageGroupUnarchivedDefinition>();
services.AddEventLogMapping<FailedMessageUnArchivedDefinition>();
services.AddEventLogMapping<MessageFailedDefinition>();
services.AddEventLogMapping<MessageFailedInStagingDefinition>();
services.AddEventLogMapping<MessageFailureResolvedByRetryDefinition>();
services.AddEventLogMapping<MessageFailureResolvedManuallyDefinition>();
Expand Down
Loading