summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/src/conn/conn_cache_pool.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/src/conn/conn_cache_pool.c')
-rw-r--r--src/third_party/wiredtiger/src/conn/conn_cache_pool.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/third_party/wiredtiger/src/conn/conn_cache_pool.c b/src/third_party/wiredtiger/src/conn/conn_cache_pool.c
index b01617de75b..f08d20e38f8 100644
--- a/src/third_party/wiredtiger/src/conn/conn_cache_pool.c
+++ b/src/third_party/wiredtiger/src/conn/conn_cache_pool.c
@@ -67,16 +67,13 @@ __wt_cache_pool_config(WT_SESSION_IMPL *session, const char **cfg)
* pool.
*/
if (__wt_config_gets(session, &cfg[1], "shared_cache.size", &cval) != WT_NOTFOUND)
- WT_RET_MSG(session, EINVAL,
- "Shared cache configuration requires a "
- "pool name");
+ WT_RET_MSG(session, EINVAL, "Shared cache configuration requires a pool name");
return (0);
}
if (__wt_config_gets(session, &cfg[1], "cache_size", &cval_cache_size) != WT_NOTFOUND)
WT_RET_MSG(session, EINVAL,
- "Only one of cache_size and shared_cache can be "
- "in the configuration");
+ "Only one of cache_size and shared_cache can be in the configuration");
/*
* NOTE: The allocations made when configuring and opening a cache pool don't really belong
@@ -185,8 +182,8 @@ __wt_cache_pool_config(WT_SESSION_IMPL *session, const char **cfg)
used_cache -= conn->cache->cp_reserved;
if (used_cache + reserve > size)
WT_ERR_MSG(session, EINVAL,
- "Shared cache unable to accommodate this configuration. "
- "Shared cache size: %" PRIu64 ", requested min: %" PRIu64,
+ "Shared cache unable to accommodate this configuration. Shared cache size: %" PRIu64
+ ", requested min: %" PRIu64,
size, used_cache + reserve);
/* The configuration is verified - it's safe to update the pool. */