We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c15ff7e commit 8dd582bCopy full SHA for 8dd582b
test/EventStore.ClientAPIAcceptanceTests/connect.cs
@@ -134,7 +134,12 @@ public async Task can_connect_to_ip_endpoint_with_connection_string() {
134
Assert.True(writeResult.LogPosition.PreparePosition > 0);
135
}
136
137
+#if NETCOREAPP3_1
138
+ [Fact(Skip = "Skip on netcoreapp3.1 due to test instability")]
139
+#else
140
[Fact]
141
+#endif
142
+
143
public async Task can_reconnect_and_retry() {
144
var streamName = GetStreamName();
145
var disconnectedSource = new TaskCompletionSource<bool>();
0 commit comments