1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

ctdb-tunables: Add missing flags in the initializer

Signed-off-by: Amitay Isaacs <amitay@gmail.com>
Reviewed-by: Martin Schwenke <martin@meltin.net>
This commit is contained in:
Amitay Isaacs 2016-03-07 17:10:43 +11:00 committed by Amitay Isaacs
parent 4bf6cab4a1
commit aa700deb64

View 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 },