Skip to content

Commit

Permalink
feat: or-1976 fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
QuintenGreenstack authored and janlesage committed Jan 23, 2024
1 parent 303ecde commit 7778a7f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 18 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

using AssociationRegistry.Framework;
using AssociationRegistry.Public.Api.Infrastructure.Extensions;
using AssociationRegistry.Public.ProjectionHost.Infrastructure.Extensions;
using EventStore;
using Framework.Helpers;
using Marten;
Expand Down Expand Up @@ -117,7 +118,7 @@ private static async Task ConfigureElasticClient(IElasticClient client, string v
if ((await client.Indices.ExistsAsync(verenigingenIndexName)).Exists)
await client.Indices.DeleteAsync(verenigingenIndexName);

var verenigingIndex = await client.Indices.CreateVerenigingIndex(verenigingenIndexName);
var verenigingIndex = await client.Indices.CreateVerenigingIndexAsync(verenigingenIndexName);

if (!verenigingIndex.IsValid)
throw verenigingIndex.OriginalException;
Expand Down

0 comments on commit 7778a7f

Please sign in to comment.