lib/splash/constants.rb in prometheus-splash-0.1.1 vs lib/splash/constants.rb in prometheus-splash-0.2.0
- old
+ new
@@ -1,9 +1,9 @@
# coding: utf-8
module Splash
module Constants
- VERSION = "0.1.1"
+ VERSION = "0.2.0"
# the path to th config file, not overridable by config
CONFIG_FILE = "/etc/splash.yml"
# the default execution trace_path if backend file
TRACE_PATH="/var/run/splash"
@@ -46,10 +46,10 @@
BACKENDS_STRUCT = { :list => [:file,:redis],
:stores => { :execution_trace => { :type => :file, :path => "/var/run/splash" }}}
# transports default settings
TRANSPORTS_STRUCT = { :list => [:rabbitmq],
:active => :rabbitmq,
- :rabbitmq => { :url => 'amqp://localhost/'} }
+ :rabbitmq => { :port => 5672, :host => "localhost"} }
end
end