[Groonga-commit] groonga/groonga at 10d8158 [master] httpd: fix the default groonga_database_auto_create value

Back to archive index

Kouhei Sutou null+****@clear*****
Tue Oct 15 14:58:28 JST 2013


Kouhei Sutou	2013-10-15 14:58:28 +0900 (Tue, 15 Oct 2013)

  New Revision: 10d815825ded041f31bec3da36e9764be43f548c
  https://github.com/groonga/groonga/commit/10d815825ded041f31bec3da36e9764be43f548c

  Message:
    httpd: fix the default groonga_database_auto_create value
    
    It should be "on" because it was described in documentation.

  Modified files:
    src/httpd/nginx-module/ngx_http_groonga_module.c

  Modified: src/httpd/nginx-module/ngx_http_groonga_module.c (+1 -1)
===================================================================
--- src/httpd/nginx-module/ngx_http_groonga_module.c    2013-10-15 14:56:02 +0900 (f0fbed6)
+++ src/httpd/nginx-module/ngx_http_groonga_module.c    2013-10-15 14:58:28 +0900 (0bcbee8)
@@ -1033,7 +1033,7 @@ ngx_http_groonga_merge_loc_conf(ngx_conf_t *cf, void *parent, void *child)
   ngx_conf_merge_str_value(conf->database_path, prev->database_path, NULL);
   ngx_conf_merge_value(conf->database_auto_create,
                        prev->database_auto_create,
-                       GRN_FALSE);
+                       GRN_TRUE);
   ngx_conf_merge_size_value(conf->cache_limit, prev->cache_limit,
                             GRN_CACHE_DEFAULT_MAX_N_ENTRIES);
 
-------------- next part --------------
HTML����������������������������...
Download 



More information about the Groonga-commit mailing list
Back to archive index