Skip to content

Commit

Permalink
fix:IntegrationEvents.Tests.Infrastructure.CustomIntegrationEventLogS…
Browse files Browse the repository at this point in the history
…ervice
  • Loading branch information
duiapro committed May 8, 2024
1 parent 0ebdc50 commit de7201e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,18 +48,18 @@ public Task<IEnumerable<IntegrationEventLog>> RetrieveEventLogsPendingToPublishA
return Task.CompletedTask;
}

public Task BulkMarkEventAsPublishedAsync(IEnumerable<Guid> eventIds, CancellationToken cancellationToken = default)
public async Task<List<Guid>> BulkMarkEventAsPublishedAsync(IEnumerable<Guid> eventIds, CancellationToken cancellationToken = default)
{
return Task.CompletedTask;
return new List<Guid>();
}

public Task BulkMarkEventAsInProgressAsync(IEnumerable<Guid> eventIds, int minimumRetryInterval, CancellationToken cancellationToken = default)
public async Task<List<Guid>> BulkMarkEventAsInProgressAsync(IEnumerable<Guid> eventIds, int minimumRetryInterval, CancellationToken cancellationToken = default)
{
return Task.CompletedTask;
return new List<Guid>();
}

public Task BulkMarkEventAsFailedAsync(IEnumerable<Guid> eventIds, CancellationToken cancellationToken = default)
public async Task<List<Guid>> BulkMarkEventAsFailedAsync(IEnumerable<Guid> eventIds, CancellationToken cancellationToken = default)
{
return Task.CompletedTask;
return new List<Guid>();
}
}
Binary file not shown.

0 comments on commit de7201e

Please sign in to comment.