diff options
author | antirez <antirez@gmail.com> | 2015-07-28 16:58:04 +0200 |
---|---|---|
committer | antirez <antirez@gmail.com> | 2015-07-28 16:58:35 +0200 |
commit | e6f39338e6464fb29f630120d8949b0d535e2e3f (patch) | |
tree | 395cd9181f45c6ca15ddea3c5f59e31933bd5ea6 /src/config.c | |
parent | c1e94b6b9c6432ade2ec427dc8602189c19758e7 (diff) | |
download | redis-e6f39338e6464fb29f630120d8949b0d535e2e3f.tar.gz |
CLIENT_MASTER introduced.
Diffstat (limited to 'src/config.c')
-rw-r--r-- | src/config.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/config.c b/src/config.c index c77a09973..6fb357eb8 100644 --- a/src/config.c +++ b/src/config.c @@ -90,7 +90,7 @@ configEnum aof_fsync_enum[] = { }; /* Output buffer limits presets. */ -clientBufferLimitsConfig clientBufferLimitsDefaults[CLIENT_TYPE_COUNT] = { +clientBufferLimitsConfig clientBufferLimitsDefaults[CLIENT_TYPE_OBUF_COUNT] = { {0, 0, 0}, /* normal */ {1024*1024*256, 1024*1024*64, 60}, /* slave */ {1024*1024*32, 1024*1024*8, 60} /* pubsub */ @@ -1163,13 +1163,13 @@ void configGetCommand(client *c) { sds buf = sdsempty(); int j; - for (j = 0; j < CLIENT_TYPE_COUNT; j++) { + for (j = 0; j < CLIENT_TYPE_OBUF_COUNT; j++) { buf = sdscatprintf(buf,"%s %llu %llu %ld", getClientTypeName(j), server.client_obuf_limits[j].hard_limit_bytes, server.client_obuf_limits[j].soft_limit_bytes, (long) server.client_obuf_limits[j].soft_limit_seconds); - if (j != CLIENT_TYPE_COUNT-1) + if (j != CLIENT_TYPE_OBUF_COUNT-1) buf = sdscatlen(buf," ",1); } addReplyBulkCString(c,"client-output-buffer-limit"); @@ -1566,7 +1566,7 @@ void rewriteConfigClientoutputbufferlimitOption(struct rewriteConfigState *state int j; char *option = "client-output-buffer-limit"; - for (j = 0; j < CLIENT_TYPE_COUNT; j++) { + for (j = 0; j < CLIENT_TYPE_OBUF_COUNT; j++) { int force = (server.client_obuf_limits[j].hard_limit_bytes != clientBufferLimitsDefaults[j].hard_limit_bytes) || (server.client_obuf_limits[j].soft_limit_bytes != |