1
0
Fork 0
mirror of https://github.com/dragonflydb/dragonfly.git synced 2024-12-15 17:51:06 +00:00

fix: small typos on flags (#1953)

* Polish small typos on flags
This commit is contained in:
Kostas Kyrimis 2023-09-27 18:02:04 +03:00 committed by GitHub
parent b82825cd6c
commit 8dd34b9ce3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View file

@ -74,7 +74,7 @@ ABSL_FLAG(string, unixsocket, "",
"be used for listening for incoming connections.");
ABSL_FLAG(string, unixsocketperm, "", "Set permissions for unixsocket, in octal value.");
ABSL_FLAG(bool, force_epoll, false,
"If true - uses linux epoll engine underneath."
"If true - uses linux epoll engine underneath. "
"Can fit for kernels older than 5.10.");
ABSL_FLAG(bool, version_check, true,

View file

@ -36,10 +36,10 @@ ABSL_FLAG(float, mem_defrag_threshold, 0.7,
"defragmentation");
ABSL_FLAG(float, mem_defrag_waste_threshold, 0.2,
"The ratio of wasted/commited memory above which we run defragmentation");
"The ratio of wasted/committed memory above which we run defragmentation");
ABSL_FLAG(float, mem_defrag_page_utilization_threshold, 0.8,
"memory page under utilization threshold. Ratio between used and commited size, below "
"memory page under utilization threshold. Ratio between used and committed size, below "
"this, memory in this page will defragmented");
namespace dfly {

View file

@ -32,7 +32,7 @@ extern "C" {
ABSL_FLAG(int, replication_acks_interval, 3000, "Interval between acks in milliseconds.");
ABSL_FLAG(bool, enable_multi_shard_sync, false,
"Execute multi shards commands on replica syncrhonized");
"Execute multi shards commands on replica synchronized");
ABSL_FLAG(int, master_connect_timeout_ms, 20000,
"Timeout for establishing connection to a replication master");
ABSL_FLAG(int, master_reconnect_timeout_ms, 1000,