Skip to content
This repository was archived by the owner on Aug 29, 2018. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 5 additions & 8 deletions node-util/sbin/oo-watchman
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,6 @@ module OpenShift
@gears = gears
@epoch = epoch

@retry_delay = 300
@gear_retries = 3
@retry_period = 28800
@debug = false
@logger = logger(config)
@incidents = {}

Expand Down Expand Up @@ -496,10 +492,11 @@ if ENV['DAEMONS_ARGV']
gears = OpenShift::Runtime::CachedGears.new(config, '/etc/passwd')

watcher = OpenShift::Runtime::Watchman.new(config, gears)
watcher.gear_retries = ENV['GEAR_RETRIES'].to_i unless ENV['GEAR_RETRIES'].nil?
watcher.retry_delay = ENV['RETRY_DELAY'].to_i unless ENV['RETRY_DELAY'].nil?
watcher.retry_period = ENV['RETRY_PERIOD'].to_i unless ENV['RETRY_PERIOD'].nil?
watcher.debug = ENV['WATCHMAN_DEBUG'] unless ENV['WATCHMAN_DEBUG'].nil?
watcher.gear_retries = ENV['GEAR_RETRIES'] ? ENV['GEAR_RETRIES'].to_i : 3
watcher.retry_delay = ENV['RETRY_DELAY'] ? ENV['RETRY_DELAY'].to_i : 300
watcher.retry_period = ENV['RETRY_PERIOD'] ? ENV['RETRY_PERIOD'].to_i : 28800
watcher.debug = ENV['WATCHMAN_DEBUG'] ? ENV['WATCHMAN_DEBUG'] : false

watcher.apply
end
end