if I use the connection string as “couchbases://.cloud.couchbase.com”
then the cluster is connected fine but
when I use Couchbase as a scheme -
“couchbase://cb..cloud.couchbase.com”
it shows a timeout error in the cluster connection
my code is as follows
var options = new ClusterOptions().WithCredentials(UserName, Password);
_cluster = Cluster.ConnectAsync(ConnectionString, options).GetAwaiter().
GetResult();
// Wait for the cluster to bootstrap and become ready
_cluster.WaitUntilReadyAsync(TimeSpan.FromSeconds(ConnectionTimeout)).GetAwaiter().GetResult();
And if I don’t use waitunitreadyAsync and directly call queryAsync then it gives the following error
Service n1ql is either not configured or cannot be reached. Check logs for details.
is there any particular option to add if wish not to use TLS connection?