Skip to content

Commit

Permalink
Hacky thing
Browse files Browse the repository at this point in the history
  • Loading branch information
roji committed Feb 28, 2024
1 parent 9877164 commit 6cba2a0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Milvus.Client.Tests/DataTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,11 @@ public async Task FlushAllAsync_and_wait()
await Client.WaitForFlushAllAsync(timestamp);

IEnumerable<PersistentSegmentInfo> segmentInfos = await Collection.GetPersistentSegmentInfosAsync();
Assert.True(segmentInfos.All(p => p.State == SegmentState.Sealed));

throw new Exception(string.Join(", ", segmentInfos.Select(p => p.State)));

Check failure on line 123 in Milvus.Client.Tests/DataTests.cs

View workflow job for this annotation

GitHub Actions / build (v2.3.10)

Milvus.Client.Tests.DataTests.FlushAllAsync_and_wait

System.Exception : Flushed, Sealed


// Assert.True(segmentInfos.All(p => p.State == SegmentState.Sealed));
}

[Fact]
Expand Down

0 comments on commit 6cba2a0

Please sign in to comment.