]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
ctdb-tunables: Add missing flags in the initializer
authorAmitay Isaacs <amitay@gmail.com>
Mon, 7 Mar 2016 06:10:43 +0000 (17:10 +1100)
committerAmitay Isaacs <amitay@samba.org>
Thu, 10 Mar 2016 02:34:18 +0000 (03:34 +0100)
Signed-off-by: Amitay Isaacs <amitay@gmail.com>
Reviewed-by: Martin Schwenke <martin@meltin.net>
ctdb/server/ctdb_tunables.c

index ba184e71b57d2fe5fff122febfb28d697d1910a0..0cc7be3ad063bbba5778dff4f4d09bd990062e8d 100644 (file)
@@ -79,11 +79,11 @@ static const struct {
        { "DeferredAttachTO",  120,  offsetof(struct ctdb_tunable_list, deferred_attach_timeout), false },
        { "AllowClientDBAttach", 1, offsetof(struct ctdb_tunable_list, allow_client_db_attach), false },
        { "RecoverPDBBySeqNum",  1, offsetof(struct ctdb_tunable_list, recover_pdb_by_seqnum), false },
-       { "DeferredRebalanceOnNodeAdd", 300, offsetof(struct ctdb_tunable_list, deferred_rebalance_on_node_add) },
-       { "FetchCollapse",       1, offsetof(struct ctdb_tunable_list, fetch_collapse) },
-       { "HopcountMakeSticky",   50,  offsetof(struct ctdb_tunable_list, hopcount_make_sticky) },
-       { "StickyDuration",      600,  offsetof(struct ctdb_tunable_list, sticky_duration) },
-       { "StickyPindown",       200,  offsetof(struct ctdb_tunable_list, sticky_pindown) },
+       { "DeferredRebalanceOnNodeAdd", 300, offsetof(struct ctdb_tunable_list, deferred_rebalance_on_node_add), false },
+       { "FetchCollapse",       1, offsetof(struct ctdb_tunable_list, fetch_collapse), false },
+       { "HopcountMakeSticky",   50,  offsetof(struct ctdb_tunable_list, hopcount_make_sticky), false },
+       { "StickyDuration",      600,  offsetof(struct ctdb_tunable_list, sticky_duration), false },
+       { "StickyPindown",       200,  offsetof(struct ctdb_tunable_list, sticky_pindown), false },
        { "NoIPTakeover",         0,  offsetof(struct ctdb_tunable_list, no_ip_takeover), false },
        { "DBRecordCountWarn",    100000,  offsetof(struct ctdb_tunable_list, db_record_count_warn), false },
        { "DBRecordSizeWarn",   10000000,  offsetof(struct ctdb_tunable_list, db_record_size_warn), false },