diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-02-20 22:34:03 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-02-20 22:34:03 +0000 |
commit | 67a6668693811a2e6c709079346e26caf5be2a84 (patch) | |
tree | 7e9478428763ae9c6c5644ec6142ab1efb79ca2d | |
parent | 1402bb7a25911e39e1fc00076ccd649af77e9e46 (diff) | |
download | rails-67a6668693811a2e6c709079346e26caf5be2a84.tar.gz rails-67a6668693811a2e6c709079346e26caf5be2a84.tar.bz2 rails-67a6668693811a2e6c709079346e26caf5be2a84.zip |
Set Railsy defaults for breakpoint client
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@722 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
-rw-r--r-- | railties/lib/breakpoint_client.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/lib/breakpoint_client.rb b/railties/lib/breakpoint_client.rb index 892fb2f560..d651b0f8a8 100644 --- a/railties/lib/breakpoint_client.rb +++ b/railties/lib/breakpoint_client.rb @@ -5,8 +5,8 @@ require 'timeout' Options = {
:ClientURI => nil,
:ServerURI => "druby://localhost:42531",
- :RetryDelay => 3,
- :Permanent => false,
+ :RetryDelay => 2,
+ :Permanent => true,
:Verbose => false
}
|