Class: Herdis::Handlers::Info

Inherits:
Goliath::API
  • Object
show all
Includes:
Common
Defined in:
lib/herdis/handlers/info.rb

Instance Method Summary collapse

Methods included from Common

included

Instance Method Details

#response(env) ⇒ Object



9
10
11
12
13
14
15
# File 'lib/herdis/handlers/info.rb', line 9

def response(env)
  if Herdis::Plugins::ShepherdConnection.shepherd.nil?
    [404, {}, ""]
  else
    [200, {}, Herdis::Plugins::ShepherdConnection.shepherd.cluster_info]
  end
end