Update to-do notes
This commit is contained in:
parent
02e03156ab
commit
047e03a40a
0
github-fast-env.rb
Executable file → Normal file
0
github-fast-env.rb
Executable file → Normal file
3
github-fast-envd.rb
Executable file → Normal file
3
github-fast-envd.rb
Executable file → Normal file
@ -92,6 +92,7 @@ def set_up_named_pipes(control_socket, connection_id)
|
|||||||
stdout = open_pipe("#{pipe_base_path}.stdout")
|
stdout = open_pipe("#{pipe_base_path}.stdout")
|
||||||
stderr = open_pipe("#{pipe_base_path}.stderr")
|
stderr = open_pipe("#{pipe_base_path}.stderr")
|
||||||
|
|
||||||
|
# TODO: support script arguments
|
||||||
control_socket.puts "named-pipes #{pipe_base_path_encoded}"
|
control_socket.puts "named-pipes #{pipe_base_path_encoded}"
|
||||||
|
|
||||||
stdin = File.open(stdin, "r")
|
stdin = File.open(stdin, "r")
|
||||||
@ -200,10 +201,8 @@ while true
|
|||||||
raise ClientScriptError.new error
|
raise ClientScriptError.new error
|
||||||
end
|
end
|
||||||
rescue ClientScriptError => error
|
rescue ClientScriptError => error
|
||||||
# TODO: Restore pipes to make sure that syntax errors are caught
|
|
||||||
encoded_error_output = Base64.encode64(error.source.full_message).delete("\n")
|
encoded_error_output = Base64.encode64(error.source.full_message).delete("\n")
|
||||||
$original_stderr.puts " error executing script, ignoring request"
|
$original_stderr.puts " error executing script, ignoring request"
|
||||||
# TODO: if the begin/rescue blog has syntax errors, these go unnoticed
|
|
||||||
begin
|
begin
|
||||||
control_socket.puts "script_error #{encoded_error_output}"
|
control_socket.puts "script_error #{encoded_error_output}"
|
||||||
rescue
|
rescue
|
||||||
|
Loading…
Reference in New Issue
Block a user