[Groonga-commit] droonga/droonga-engine at 38d460e [master] Use string representation address out of catalog

Back to archive index

Kouhei Sutou null+****@clear*****
Sat Jul 19 21:35:37 JST 2014


Kouhei Sutou	2014-07-19 21:35:37 +0900 (Sat, 19 Jul 2014)

  New Revision: 38d460e975fc9c27b6c42cf1003dc46d1aaf3ec5
  https://github.com/droonga/droonga-engine/commit/38d460e975fc9c27b6c42cf1003dc46d1aaf3ec5

  Message:
    Use string representation address out of catalog
    
    It is just for compatibility.

  Modified files:
    lib/droonga/catalog/dataset.rb

  Modified: lib/droonga/catalog/dataset.rb (+2 -2)
===================================================================
--- lib/droonga/catalog/dataset.rb    2014-07-19 21:29:30 +0900 (242dd3b)
+++ lib/droonga/catalog/dataset.rb    2014-07-19 21:35:37 +0900 (b30fa8c)
@@ -70,14 +70,14 @@ module Droonga
           volumes.each do |volume|
             slices = volume.select_slices
             slices.each do |slice|
-              routes << slice.volume.address
+              routes << slice.volume.address.to_s
             end
           end
         when "scatter"
           volumes = replicas.select(message["replica"].to_sym, live_nodes)
           volumes.each do |volume|
             slice = volume.choose_slice(message["record"])
-            routes << slice.volume.address
+            routes << slice.volume.address.to_s
           end
         end
         routes
-------------- next part --------------
HTML����������������������������...
Download 



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