<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>test/commands.txt</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -1,3 +1,4 @@
 test/app/log/*.log
 *~
 \#*
+erl_crash.dump</diff>
      <filename>.gitignore</filename>
    </modified>
    <modified>
      <diff>@@ -13,7 +13,6 @@ $:.unshift(CMD_LINE_PATH)
 
 DEFAULT_NODE_NAME = `hostname -s`.chomp + &quot;-#{rand(9999)}&quot;
 DEFAULT_MASTER_NODE = &quot;master@fuzed-dev.powerset.com&quot;
-DEFAULT_REMOTE_RUBY = &quot;http://fuzed-dev.powerset.com:9001/code&quot;
 DEFAULT_ERLANG_CODEPATHS = %w[ebin/yaws ebin/eunit etest ebin]
 DEFAULT_BOOT_DIR = &quot;/p/conf/fuzed/&quot;
 </diff>
      <filename>bin/fuzed</filename>
    </modified>
    <modified>
      <diff>@@ -14,9 +14,10 @@ out404(A, _GC, SC) -&gt;
                                          details()) of
     {result, R} -&gt; 
       convert_response(R);
-    {error, _R} -&gt;
+    {error, R} -&gt;
+      error_logger:info_msg(&quot;500 Internal Server Error: ~p~n&quot;, [R]),
       [{status, 500}, {html, &quot;Sumpin fucked.&quot;}]
-  end.                                                        
+  end.
 
 parse_arg(Request, ServerOptions) -&gt;
   Headers = Request#arg.headers,
@@ -88,5 +89,6 @@ prep(A) -&gt; A.
 
 details() -&gt;
   {ok, Details} = 
-    application:get_env(frontend, details),
+    application:get_env(fuzed_frontend, details),
+  error_logger:info_msg(&quot;Using frontend details ~p~n&quot;, [Details]),
   Details.</diff>
      <filename>elibs/frontend_responder.erl</filename>
    </modified>
    <modified>
      <diff>@@ -35,5 +35,8 @@ init([]) -&gt;
        permanent, 10000, worker, [pool_sweeper]},
      {fuzed_code_monitor,
        {fuzed_code_monitor, start_link, []},
-       permanent, 10000, worker, [fuzed_code_monitor]}
+       permanent, 10000, worker, [fuzed_code_monitor]},
+     {logger, 
+       {logger, start_link, [&quot;/var/log/fuzed&quot;]},
+       permanent, 10000, worker, [logger]}
     ]}}.</diff>
      <filename>elibs/fuzed_supervisor.erl</filename>
    </modified>
    <modified>
      <diff>@@ -1,11 +1,9 @@
 def create_spec_list(options)
   spec_list = []
-  result = &quot;&quot;
-  result.concat(&quot;/p/bin/xlew &quot;) if options[:xlew]
-  result.concat(&quot;ruby -I/p/libexec/fuzed #{FUZED_ROOT + &quot;/rlibs/pontoon.rb &quot;}&quot;)
-  raise &quot;You must specify an fuzed file to join the fuzed cluster!&quot; unless options[:fuzedfile]
+  result = &quot;ruby &quot;
+  result.concat(&quot;-I#{FUZED_ROOT + &quot;/rlibs &quot;}&quot;)
+  raise &quot;You must specify a fuzed file to join the fuzed cluster!&quot; unless options[:fuzedfile]
   result.concat(options[:fuzedfile] + &quot; &quot;)
-  result.concat(%{#{options[:remote_ruby] || DEFAULT_REMOTE_RUBY} })
   result.concat(%{--tags=&quot;#{options[:tags]}&quot; }) if options[:tags]
   roles = []
   roles &lt;&lt; &quot;production&quot; if options[:production]
@@ -27,7 +25,6 @@ OptionParser.new do |opts|
   
   opts.on(&quot;-z HOSTNAME&quot;, &quot;--magic HOSTNAME&quot;, &quot;Set smart details based off of a hostname&quot;) do |n|
     options[:master_name] = &quot;master@#{n}&quot;
-    options[:remote_ruby] = &quot;http://#{n}:9001/code&quot;
   end
   
   opts.on(&quot;-n NAME&quot;, &quot;--name NAME&quot;, &quot;Node name&quot;) do |n|
@@ -54,15 +51,11 @@ OptionParser.new do |opts|
     options[:tags] = n
   end
   
-  opts.on(&quot;-x&quot;, &quot;--xlew&quot;, &quot;Make sure to run the node in the powerset nl environment&quot;) do |n|
-    options[:xlew] = true
-  end
-  
   opts.on(&quot;-d&quot;, &quot;--detached&quot;, &quot;Run as a daemon&quot;) do
     options[:detached] = true
   end
   
-  opts.on(&quot;-p&quot;, &quot;--produciton&quot;, &quot;Classify these nodes as production&quot;) do
+  opts.on(&quot;-p&quot;, &quot;--production&quot;, &quot;Classify these nodes as production&quot;) do
     options[:production] = true
   end
   
@@ -73,10 +66,6 @@ OptionParser.new do |opts|
   opts.on(&quot;-i&quot;, &quot;--inet&quot;, &quot;Load code over internet via master code server&quot;) do
     options[:inet] = true
   end
-  
-  opts.on(&quot;--remote_ruby LOCATION&quot;, &quot;Load Ruby code from the given URL or file location&quot;) do |x|
-    options[:remote_ruby] = x
-  end
 
   opts.on(&quot;-h&quot;, &quot;--heartbeat&quot;, &quot;Start with a heartbeat.&quot;) do
     $stderr.puts &quot;WARNING! Heartbeats not supported with this build!&quot;
@@ -109,8 +98,6 @@ else
   &quot;&quot;
 end
 
-remote_ruby = options[:remote_ruby] || DEFAULT_REMOTE_RUBY
-
 cmd = %Q{erl -boot start_sasl \
              #{detached} \
              +Bc \</diff>
      <filename>rlibs/cli/join.rb</filename>
    </modified>
    <modified>
      <diff>@@ -147,7 +147,7 @@ class RailsHandler &lt; Chassis
 
   details(&quot;rails&quot; =&gt; &quot;default&quot;)
 
-  handle(:handle_request) do |args|
+  handle(:handle_request, :request) do |args|
     service(args[:request])
   end
 end</diff>
      <filename>rlibs/rails_node.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>aac45964081d8d0ec8a423f1f536c722284ca91f</id>
    </parent>
  </parents>
  <author>
    <name>Tom Preston-Werner</name>
    <email>tom@mojombo.com</email>
  </author>
  <url>http://github.com/KirinDave/fuzed/commit/84159d727f2ae308bcb1518c66420e17e790bec7</url>
  <id>84159d727f2ae308bcb1518c66420e17e790bec7</id>
  <committed-date>2008-05-04T20:33:26-07:00</committed-date>
  <authored-date>2008-05-04T20:33:26-07:00</authored-date>
  <message>getting close to a full roundtrip</message>
  <tree>9f0a478b8f0ce7e87d821d0bd2c6c76ab993ebf1</tree>
  <committer>
    <name>Tom Preston-Werner</name>
    <email>tom@mojombo.com</email>
  </committer>
</commit>
