From 484961b8d288dd2087999240279c0aa970b1852c Mon Sep 17 00:00:00 2001 From: Ken Zangelin Date: Sat, 16 Sep 2023 17:33:14 +0200 Subject: [PATCH] Reversed the fix - just as a test - lots of failures in github actions ... --- src/lib/orionld/mongoc/mongocInit.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/orionld/mongoc/mongocInit.cpp b/src/lib/orionld/mongoc/mongocInit.cpp index 778e3ee751..6f7fc50173 100644 --- a/src/lib/orionld/mongoc/mongocInit.cpp +++ b/src/lib/orionld/mongoc/mongocInit.cpp @@ -197,8 +197,8 @@ static char* uriCompose // If dbHost is a list, the list must end with a slash // Assuming it's a list if there's a comma in the string // - if (strchr(dbHost, ',') != NULL) - compV[compNo++] = (char*) "/"; + // if (strchr(dbHost, ',') != NULL) + // compV[compNo++] = (char*) "/"; bool dbAuthDbPresent = (dbAuthDb != NULL) && (dbAuthDb[0] != 0); bool dbReplicaSetPresent = (dbReplicaSet != NULL) && (dbReplicaSet[0] != 0);