diff options
author | Volker Lendecke <vl@samba.org> | 2017-06-16 17:11:48 +0200 |
---|---|---|
committer | Ralph Boehme <slow@samba.org> | 2017-07-25 17:43:18 +0200 |
commit | 1cc970be020567746d69c8f42ba551acc9ec8078 (patch) | |
tree | 1567220f7e8aa6add4d6b88dab73349321e6c120 /source3/lib/dbwrap/dbwrap_open.c | |
parent | e26fa9980ccb9d14e8920f0224473010da26a3b5 (diff) | |
download | samba-1cc970be020567746d69c8f42ba551acc9ec8078.tar.gz |
dbwrap_ctdb: Use messaging_ctdbd_connection
With messages_ctdb, the global ctdb connection will change after fork.
Don't store the wrong parent connection across a fork. The alternative would
be to do a reinit on all dbwrap_ctdb databases, but that seems overkill
given that we only have one "standard" ctdb connection anyway.
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Ralph Boehme <slow@samba.org>
Diffstat (limited to 'source3/lib/dbwrap/dbwrap_open.c')
-rw-r--r-- | source3/lib/dbwrap/dbwrap_open.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/dbwrap/dbwrap_open.c b/source3/lib/dbwrap/dbwrap_open.c index 801ebcbde4c..6ecf8565abd 100644 --- a/source3/lib/dbwrap/dbwrap_open.c +++ b/source3/lib/dbwrap/dbwrap_open.c @@ -156,7 +156,7 @@ struct db_context *db_open(TALLOC_CTX *mem_ctx, } msg_ctx = server_messaging_context(); - result = db_open_ctdb(mem_ctx, msg_ctx, conn, partname, + result = db_open_ctdb(mem_ctx, msg_ctx, partname, hash_size, tdb_flags, open_flags, mode, lock_order, dbwrap_flags); |