ry / ebb fork watch download tarball
public this repo is viewable by everyone
Description: web server
Homepage: http://ebb.rubyforge.org
Clone URL: git://github.com/ry/ebb.git
small bug fix
Ryan Dahl (author)
2 months ago
commit  b88daa796c6eade49e1b15d38ca97aae66d76e8d
tree    5d6535cae8f7d9012e088362b25e8fd85a414146
parent  a92f760d6888ba358bd5ed4934018ab150f2f3c7
...
92
93
94
95
 
96
97
98
...
92
93
94
 
95
96
97
98
0
@@ -92,7 +92,7 @@ class ServerTest
0
     case name
0
     when 'emongrel'
0
       @pid = fork { start_emongrel }
0
- when /ebb(\d*)/
0
+ when /^ebb(\d*)$/
0
       workers = $1.to_i
0
       workers = 1 if workers <= 0
0
       @pid = fork { start_ebb(workers) }
...
92
93
94
95
 
96
97
98
...
92
93
94
 
95
96
97
98
0
@@ -92,7 +92,7 @@ module Ebb
0
       'rack.multithread' => false,
0
       'rack.multiprocess' => false,
0
       'rack.run_once' => false
0
- }.freeze
0
+ }
0
     
0
     def env
0
       @env ||= begin
...
110
111
112
113
 
114
...
110
111
112
 
113
114
0
@@ -110,4 +110,4 @@ struct ebb_server {
0
   ebb_request_cb request_cb;
0
 };
0
 
0
-#endif
0
+#endif
0
\ No newline at end of file

Comments

    No one has commented yet.