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 a3cc9a0
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}",
$"{GraphQlSubscriptionConstants.DialogEventsTopic}{x.Id}",
x,
cancellationToken)
.AsTask());
Expand Down

0 comments on commit a3cc9a0

Please sign in to comment.