[Groonga-commit] droonga/fluent-plugin-droonga at 2960372 [master] Adjust existing handlers to work under proxy.

Back to archive index

Daijiro MORI null+****@clear*****
Fri Sep 6 09:58:56 JST 2013


Daijiro MORI	2013-09-06 09:58:56 +0900 (Fri, 06 Sep 2013)

  New Revision: 29603726c70f3ad53bf9759ad16d1d38395cae04
  https://github.com/droonga/fluent-plugin-droonga/commit/29603726c70f3ad53bf9759ad16d1d38395cae04

  Message:
    Adjust existing handlers to work under proxy.

  Modified files:
    lib/droonga/plugin/handler_add.rb
    lib/droonga/plugin/handler_groonga.rb

  Modified: lib/droonga/plugin/handler_add.rb (+1 -1)
===================================================================
--- lib/droonga/plugin/handler_add.rb    2013-09-05 23:00:53 +0900 (32ec306)
+++ lib/droonga/plugin/handler_add.rb    2013-09-06 09:58:56 +0900 (d8a93b9)
@@ -26,7 +26,7 @@ module Droonga
     command :add
     def add(request)
       outputs = process(request)
-      post(outputs)
+      emit(outputs)
     end
 
     private

  Modified: lib/droonga/plugin/handler_groonga.rb (+2 -2)
===================================================================
--- lib/droonga/plugin/handler_groonga.rb    2013-09-05 23:00:53 +0900 (3ebe24b)
+++ lib/droonga/plugin/handler_groonga.rb    2013-09-06 09:58:56 +0900 (c1c8453)
@@ -27,14 +27,14 @@ module Droonga
     def table_create(request)
       command = TableCreate.new(@context)
       outputs = command.execute(request)
-      post(outputs)
+      emit(outputs)
     end
 
     command :column_create
     def column_create(request)
       command = ColumnCreate.new(@context)
       outputs = command.execute(request)
-      post(outputs)
+      emit(outputs)
     end
 
     module Status
-------------- next part --------------
HTML����������������������������...
Download 



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