diff options
| author | Sachidananda <sac@gluster.com> | 2011-05-23 12:23:11 +0000 | 
|---|---|---|
| committer | Anand Avati <avati@gluster.com> | 2011-05-31 05:11:18 -0700 | 
| commit | 1b0c33f8960fb1fae03012b479d6cac9ce4d8941 (patch) | |
| tree | 7ca4c66f20e6b4fff8107cf7f4aefacb4e6e97a9 /xlators | |
| parent | 793aba82fa9585985b4285a92f9bce5b28f5c8db (diff) | |
Fix typo in log message related to io-threads.
Signed-off-by: Sachidananda Urs <sac@gluster.com>
Signed-off-by: Anand Avati <avati@gluster.com>
BUG: 2926 (Typo in log message)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=2926
Diffstat (limited to 'xlators')
| -rw-r--r-- | xlators/performance/io-threads/src/io-threads.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/xlators/performance/io-threads/src/io-threads.c b/xlators/performance/io-threads/src/io-threads.c index bdc808319d1..e791b941ae9 100644 --- a/xlators/performance/io-threads/src/io-threads.c +++ b/xlators/performance/io-threads/src/io-threads.c @@ -2128,7 +2128,7 @@ reconfigure ( xlator_t *this, dict_t *options)                  if (thread_count < IOT_MIN_THREADS) {                          gf_log ("io-threads", GF_LOG_WARNING, -                                "Number of threads opted (%d) is less then " +                                "Number of threads opted (%d) is less than "                                  "min (%d). Restoring it to previous value (%d)",                                  thread_count, IOT_MIN_THREADS, conf->max_count);  			goto out; @@ -2191,13 +2191,13 @@ init (xlator_t *this)                                                          "thread-count"));                  if (thread_count < IOT_MIN_THREADS) {                          gf_log ("io-threads", GF_LOG_WARNING, -                                "Number of threads opted is less then min" +                                "Number of threads opted is less than min"                                  "threads allowed scaling it up to min");                          thread_count = IOT_MIN_THREADS;                  }                  if (thread_count > IOT_MAX_THREADS) {                          gf_log ("io-threads", GF_LOG_WARNING, -                                "Number of threads opted is more then max" +                                "Number of threads opted is more than max"                                  " threads allowed scaling it down to max");                          thread_count = IOT_MAX_THREADS;                  }  | 
