Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
oskogstad committed Feb 26, 2025
1 parent a3bd2f8 commit 5c41028
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
using MassTransit;
using Microsoft.EntityFrameworkCore.Diagnostics;
using Microsoft.Extensions.Logging;
using Constants = Digdir.Domain.Dialogporten.Infrastructure.GraphQl.GraphQlSubscriptionConstants;

namespace Digdir.Domain.Dialogporten.Infrastructure.Persistence.Interceptors;

Expand Down Expand Up @@ -103,7 +102,7 @@ public override async ValueTask<int> SavedChangesAsync(SaveChangesCompletedEvent
.Where(x => x is not null)
.Cast<DialogEventPayload>()
.Select(x => _topicEventSender.Value.SendAsync(
$"{Constants.DialogEventsTopic}{x.Id}",
$"{eGraphQlSubscriptionConstants.DialogEventsTopic}{x.Id}",

Check failure on line 105 in src/Digdir.Domain.Dialogporten.Infrastructure/Persistence/Interceptors/ConvertDomainEventsToOutboxMessagesInterceptor.cs

View workflow job for this annotation

GitHub Actions / build / build-and-test

The name 'eGraphQlSubscriptionConstants' does not exist in the current context

Check failure on line 105 in src/Digdir.Domain.Dialogporten.Infrastructure/Persistence/Interceptors/ConvertDomainEventsToOutboxMessagesInterceptor.cs

View workflow job for this annotation

GitHub Actions / build / build-and-test

The name 'eGraphQlSubscriptionConstants' does not exist in the current context
x,
cancellationToken)
.AsTask());
Expand Down

0 comments on commit 5c41028

Please sign in to comment.