summaryrefslogtreecommitdiff
path: root/src/conn/conn_api.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/conn/conn_api.c')
-rw-r--r--src/conn/conn_api.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/conn/conn_api.c b/src/conn/conn_api.c
index 04c29e957a3..a6e0f57f02e 100644
--- a/src/conn/conn_api.c
+++ b/src/conn/conn_api.c
@@ -1451,7 +1451,7 @@ __conn_single(WT_SESSION_IMPL *session, const char *cfg[])
WT_FH *fh;
size_t len;
wt_off_t size;
- bool bytelock, exist, is_create;
+ bool bytelock, exist, is_create, match;
char buf[256];
conn = S2C(session);
@@ -1477,13 +1477,14 @@ __conn_single(WT_SESSION_IMPL *session, const char *cfg[])
* won't open a database in multiple threads, but we don't want to have
* it fail the first time, but succeed the second.
*/
+ match = false;
TAILQ_FOREACH(t, &__wt_process.connqh, q)
if (t->home != NULL &&
t != conn && strcmp(t->home, conn->home) == 0) {
- ret = EBUSY;
+ match = true;
break;
}
- if (ret != 0)
+ if (match)
WT_ERR_MSG(session, EBUSY,
"WiredTiger database is already being managed by another "
"thread in this process");