murakumo 0.2.5 → 0.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/misc/murakumo_const.rb +1 -1
- data/lib/srv/murakumo_cloud.rb +1 -1
- metadata +3 -3
data/lib/misc/murakumo_const.rb
CHANGED
data/lib/srv/murakumo_cloud.rb
CHANGED
@@ -22,7 +22,6 @@ module Murakumo
|
|
22
22
|
# リソースレコードからホストのアドレスとデータを取り出す
|
23
23
|
host_data = options[:host]
|
24
24
|
@address = host_data.shift
|
25
|
-
@hostname = host_data.first
|
26
25
|
host_data.concat [ORIGIN, ACTIVE]
|
27
26
|
alias_datas = options[:aliases].map {|r| r + [ACTIVE] }
|
28
27
|
@logger = options[:logger]
|
@@ -37,6 +36,7 @@ module Murakumo
|
|
37
36
|
# データベースを作成してレコードを更新
|
38
37
|
create_database
|
39
38
|
update(@address, datas)
|
39
|
+
@hostname = host_data.first
|
40
40
|
|
41
41
|
# ゴシップオブジェクトを生成
|
42
42
|
@gossip = RGossip2.client({
|
metadata
CHANGED