Class: Connect::Datasources::ConsulServiceStore

Inherits:
ConsulBase
  • Object
show all
Defined in:
lib/connect/datasources/consul_service_store.rb

Overview

The Datasource that allows you t get data from the Consul Service Store

Instance Method Summary collapse

Methods inherited from ConsulBase

#initialize, #to_connect

Constructor Details

This class inherits a constructor from Connect::Datasources::ConsulBase

Instance Method Details

#lookup(service) ⇒ Object



12
13
14
15
16
# File 'lib/connect/datasources/consul_service_store.rb', line 12

def lookup(service)
  value = ::Diplomat::Service.get(service)
  value = value.is_a?(Array) ? value.collect{|v| to_connect(v)} : to_connect(value)
  value
end