You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have written a simple test program which exposes a hang in the library. When I open a connection, add a vertex then disable my network the next call to the library hangs indefinitely. If I re-enable the network the library continues to hang. The library should error and/or timeout when there is a network failure.
using System;
using System.Diagnostics;
using System.Linq;
using System.Threading.Tasks;
using Gremlin.Net.CosmosDb;
using Gremlin.Net.CosmosDb.Structure;
I have written a simple test program which exposes a hang in the library. When I open a connection, add a vertex then disable my network the next call to the library hangs indefinitely. If I re-enable the network the library continues to hang. The library should error and/or timeout when there is a network failure.
using System;
using System.Diagnostics;
using System.Linq;
using System.Threading.Tasks;
using Gremlin.Net.CosmosDb;
using Gremlin.Net.CosmosDb.Structure;
namespace GremlinTest
{
class Program
{
string Endpoint = "[ENDPOINT]";
string DatabaseName = "[DATABASE]";
string CollectionName = "[COLLECTION]";
string AuthKey = "[AUTHKEY]";
GraphClient graphClient;
}
The text was updated successfully, but these errors were encountered: