You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 5, 2019. It is now read-only.
Looks like there an exception which is not handled by this code in script/builder. Guys any recommendations what to do about it?
beginproject=load_project(project_path)startup(project)write_to_log_and_console"Builder for project '#{project.name}' started"puts"Logging to: #{File.expand_path(CRUISE_OPTIONS[:log_file_name])}"while(true)docatch(:reload_project)doproject.scheduler.runendproject=load_project(project_path)# this will cause the next call to scheduler to run the build immediatelyproject.request_buildrescuenilendrescueInterrupt# this is okay, we're just control-c'ing the apprescueException=>ebeginCruiseControl::Log.fatal(e)rescue=>logging_errorSTDERR.putse.messageSTDERR.putse.backtrace.map{ |line| " #{line}"}STDERR.puts"Attempt to log the above error failed with this:"STDERR.putslogging_error.messageSTDERR.putslogging_error.backtraceendCRUISE_OPTIONS[:verbose] ? raise : exit(1)ensurecleanup(project)end
The text was updated successfully, but these errors were encountered:
@crawlik - Which version of rails are you using? From a bit of research it seems that some older versions (2.3.x) may have a bug causing issues with STRERR stream writes in particular circumstances. I'm unable to find much in the way of compelling documentation on the specifics and/or practical fixes. If you are using an older version of rails I'd suggest upgrading if that's possible.
If that isn't a practical solution can you please post the specifics of your environment (ruby version/rails version/platform/anything else special you're doing).
We downloaded /thoughtworks-cruisecontrol.rb-422b3ee from https://github.com/thoughtworks/cruisecontrol.rb/downloads. Got it installed and running but some projects exit unexpectedly. Here is log trace from builder.log.
Looks like there an exception which is not handled by this code in script/builder. Guys any recommendations what to do about it?
The text was updated successfully, but these errors were encountered: