From 33c57437a497f14c6f554c254cbb00b08f73e382 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Tue, 24 Jul 2007 11:47:37 +0000 Subject: r24032: It helps testing tremendously if the cluster messaging actually sends and receives messages to other nodes... :-) (This used to be commit 3e9e9a3f28763500a1c5e551a808a14661d7d9fa) --- source3/lib/messages_ctdbd.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'source3/lib/messages_ctdbd.c') diff --git a/source3/lib/messages_ctdbd.c b/source3/lib/messages_ctdbd.c index d048bc9aba..dbdc8db3c1 100644 --- a/source3/lib/messages_ctdbd.c +++ b/source3/lib/messages_ctdbd.c @@ -94,6 +94,15 @@ NTSTATUS messaging_ctdbd_init(struct messaging_context *msg_ctx, return status; } + status = ctdbd_register_msg_ctx(ctx->conn, msg_ctx); + + if (!NT_STATUS_IS_OK(status)) { + DEBUG(10, ("ctdbd_register_msg_ctx failed: %s\n", + nt_errstr(status))); + TALLOC_FREE(result); + return status; + } + global_ctdbd_connection = ctx->conn; talloc_set_destructor(ctx, messaging_ctdbd_destructor); -- cgit