public
Description: A very fast & simple Ruby web server
Homepage: http://code.macournoyer.com/thin/
Clone URL: git://github.com/macournoyer/thin.git
Search Repo:
Forgot to add argument in thin script for --only option.
macournoyer (author)
Sun Jan 27 11:21:58 -0800 2008
commit  995ab959a4d5386e3811f00802d90656c2f8a3fd
tree    85d5d258535b46ae80d8637519a31e9c4b3d249e
parent  3e3bb71de5fd8c3128dae9032c5195410b0f1754
...
55
56
57
58
 
59
60
61
...
55
56
57
 
58
59
60
61
0
@@ -55,7 +55,7 @@
0
   
0
   opts.on("-s", "--servers NUM", "Number of servers to start",
0
                                  "set a value >1 to start a cluster") { |num| options[:servers] = num.to_i }
0
- opts.on("-o", "--only", "Send command to only one server of the cluster") { |only| options[:only] = only }
0
+ opts.on("-o", "--only NUM", "Send command to only one server of the cluster") { |only| options[:only] = only }
0
   opts.on("-C", "--config PATH", "Load options from a config file") { |file| options[:config] = file }
0
   
0
   opts.separator ""
...
1
2
3
4
5
 
 
6
7
8
...
1
2
3
 
 
4
5
6
7
8
0
@@ -1,8 +1,8 @@
0
 module Thin
0
   # Control a set of servers.
0
   # * Generate start and stop commands and run them.
0
- # * Inject the port number in the pid and log filenames.
0
- # Servers are started throught the +thin+ commandline script.
0
+ # * Inject the port or socket number in the pid and log filenames.
0
+ # Servers are started throught the +thin+ command-line script.
0
   class Cluster
0
     include Logging
0
     

Comments

    No one has commented yet.