comparison src/http/modules/ngx_http_uwsgi_module.c @ 4593:834049edae24

Fixed grammar in error messages.
author Ruslan Ermilov <ru@nginx.com>
date Thu, 12 Apr 2012 19:35:41 +0000
parents 1ebec1d15a25
children adcd60233817
comparison
equal deleted inserted replaced
4592:ab1649495d30 4593:834049edae24
1214 conf->upstream.busy_buffers_size_conf; 1214 conf->upstream.busy_buffers_size_conf;
1215 } 1215 }
1216 1216
1217 if (conf->upstream.busy_buffers_size < size) { 1217 if (conf->upstream.busy_buffers_size < size) {
1218 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, 1218 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
1219 "\"uwsgi_busy_buffers_size\" must be equal or bigger " 1219 "\"uwsgi_busy_buffers_size\" must be equal to or greater "
1220 "than maximum of the value of \"uwsgi_buffer_size\" and " 1220 "than the maximum of the value of \"uwsgi_buffer_size\" and "
1221 "one of the \"uwsgi_buffers\""); 1221 "one of the \"uwsgi_buffers\"");
1222 1222
1223 return NGX_CONF_ERROR; 1223 return NGX_CONF_ERROR;
1224 } 1224 }
1225 1225
1245 conf->upstream.temp_file_write_size_conf; 1245 conf->upstream.temp_file_write_size_conf;
1246 } 1246 }
1247 1247
1248 if (conf->upstream.temp_file_write_size < size) { 1248 if (conf->upstream.temp_file_write_size < size) {
1249 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, 1249 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
1250 "\"uwsgi_temp_file_write_size\" must be equal or bigger than " 1250 "\"uwsgi_temp_file_write_size\" must be equal to or greater than "
1251 "maximum of the value of \"uwsgi_buffer_size\" and " 1251 "the maximum of the value of \"uwsgi_buffer_size\" and "
1252 "one of the \"uwsgi_buffers\""); 1252 "one of the \"uwsgi_buffers\"");
1253 1253
1254 return NGX_CONF_ERROR; 1254 return NGX_CONF_ERROR;
1255 } 1255 }
1256 1256
1268 1268
1269 if (conf->upstream.max_temp_file_size != 0 1269 if (conf->upstream.max_temp_file_size != 0
1270 && conf->upstream.max_temp_file_size < size) { 1270 && conf->upstream.max_temp_file_size < size) {
1271 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, 1271 ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
1272 "\"uwsgi_max_temp_file_size\" must be equal to zero to disable " 1272 "\"uwsgi_max_temp_file_size\" must be equal to zero to disable "
1273 "the temporary files usage or must be equal or bigger than " 1273 "temporary files usage or must be equal to or greater than "
1274 "maximum of the value of \"uwsgi_buffer_size\" and " 1274 "the maximum of the value of \"uwsgi_buffer_size\" and "
1275 "one of the \"uwsgi_buffers\""); 1275 "one of the \"uwsgi_buffers\"");
1276 1276
1277 return NGX_CONF_ERROR; 1277 return NGX_CONF_ERROR;
1278 } 1278 }
1279 1279