about summary refs log tree commit homepage
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/unicorn3
1 files changed, 1 insertions, 2 deletions
diff --git a/bin/unicorn b/bin/unicorn
index dd4cc64..0956d6f 100755
--- a/bin/unicorn
+++ b/bin/unicorn
@@ -114,9 +114,8 @@ abort "configuration file #{config} not found" unless File.exist?(config)
 
 if config =~ /\.ru$/
   cfgfile = File.read(config)
-  # parse embedded command-line options in config.ru comments
   if cfgfile[/^#\\(.*)/]
-    opts.parse! $1.split(/\s+/)
+    warn %(not parsing embedded command-line options: "#$1")
   end
   inner_app = eval "Rack::Builder.new {(#{cfgfile}\n)}.to_app", nil, config
 else