Skip to content

Commit

Permalink
Remove this commit before merging
Browse files Browse the repository at this point in the history
This patch sets default for in-memory transaction to true!
  • Loading branch information
thalman committed Jun 19, 2024
1 parent 39b627e commit 644cde9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/confdb/confdb.c
Original file line number Diff line number Diff line change
Expand Up @@ -1018,7 +1018,7 @@ static errno_t confdb_init_domain(struct sss_domain_info *domain,
}

ret = get_entry_as_bool(res->msgs[0], &domain->cache_in_memory_transactions,
CONFDB_DOMAIN_CACHE_IN_MEMORY_TRANSACTIONS, 0);
CONFDB_DOMAIN_CACHE_IN_MEMORY_TRANSACTIONS, 1);
if (ret != EOK) {
DEBUG(SSSDBG_FATAL_FAILURE,
"Invalid value for %s\n", CONFDB_DOMAIN_CACHE_IN_MEMORY_TRANSACTIONS);
Expand Down

0 comments on commit 644cde9

Please sign in to comment.