public
Description: New and ultra-turbo-crazy-fast backend for Thin
Homepage: http://code.macournoyer.com/thin/
Clone URL: git://github.com/macournoyer/thin-turbo.git
replace Server with TestServer in a few places I missed
kevwil (author)
Sun Feb 03 19:53:59 -0800 2008
commit  ed0ebf074dd1911b84c2172536a5053aa11299aa
tree    67f940c9dc8efbb2d16681887a5b1173641c494c
parent  8e2da1c8cc8d864e3d33cb45866df0a38444dd7d
...
88
89
90
91
 
92
93
94
...
105
106
107
108
 
109
110
111
...
123
124
125
126
 
127
128
129
...
88
89
90
 
91
92
93
94
...
105
106
107
 
108
109
110
111
...
123
124
125
 
126
127
128
129
0
@@ -88,7 +88,7 @@ describe 'Daemonizing' do
0
     server_should_start_in_less_then 3
0
   
0
     silence_stream STDOUT do
0
- Server.kill(@server.pid_file, 1)
0
+ TestServer.kill(@server.pid_file, 1)
0
     end
0
   
0
     File.exist?(@server.pid_file).should_not be_true
0
@@ -105,7 +105,7 @@ describe 'Daemonizing' do
0
     server_should_start_in_less_then 10
0
   
0
     silence_stream STDOUT do
0
- Server.kill(@server.pid_file, 1)
0
+ TestServer.kill(@server.pid_file, 1)
0
     end
0
   
0
     File.exist?(@server.pid_file).should be_false
0
@@ -123,7 +123,7 @@ describe 'Daemonizing' do
0
     server_should_start_in_less_then 10
0
   
0
     silence_stream STDOUT do
0
- Server.restart(@server.pid_file)
0
+ TestServer.restart(@server.pid_file)
0
     end
0
     
0
     proc { sleep 0.1 while File.exist?(@server.pid_file) }.should take_less_then(10)

Comments

    No one has commented yet.