Increased timeouts.

This commit is contained in:
Martin Edenhofer 2017-01-04 13:36:52 +01:00
parent 04aea92f8c
commit c6346ea210
2 changed files with 3 additions and 3 deletions

View file

@ -78,7 +78,7 @@ example
Rails.logger.info "fetching imap (#{options[:host]}/#{options[:user]} port=#{port},ssl=#{ssl})" Rails.logger.info "fetching imap (#{options[:host]}/#{options[:user]} port=#{port},ssl=#{ssl})"
# on check, reduce open_timeout to have faster probing # on check, reduce open_timeout to have faster probing
timeout = 24 timeout = 30
if check_type == 'check' if check_type == 'check'
timeout = 6 timeout = 6
end end

View file

@ -66,8 +66,8 @@ returns
#@pop.set_debug_output $stderr #@pop.set_debug_output $stderr
# on check, reduce open_timeout to have faster probing # on check, reduce open_timeout to have faster probing
@pop.open_timeout = 12 @pop.open_timeout = 16
@pop.read_timeout = 24 @pop.read_timeout = 30
if check_type == 'check' if check_type == 'check'
@pop.open_timeout = 4 @pop.open_timeout = 4
@pop.read_timeout = 6 @pop.read_timeout = 6