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 d4a56e7 commit 8ef31e5Copy full SHA for 8ef31e5
src/mongoc/mongoc-cluster.c
@@ -2019,18 +2019,14 @@ bool
2019
has_host (const mongoc_host_list_t *hl,
2020
const char *host_and_port)
2021
{
2022
- printf ("has_host %s\n", host_and_port);
2023
-
2024
while (hl) {
2025
if (!strcmp(hl->host_and_port, host_and_port)) {
2026
- printf ("\tyes\n");
2027
return true;
2028
}
2029
2030
hl = hl->next;
2031
2032
2033
- printf ("\tno\n");
2034
return false;
2035
2036
0 commit comments