Ignore:
Timestamp:
May 11, 2007, 1:06:36 PM (17 years ago)
Author:
mmc
Message:

Fixed the automatic bug reporting system to avoid reporting bugs caught
in a workspace, or in a tool with an explicit <reportJobFailures> set
to 0. We use this for tools like Spice3F4, where we expect lots of
pilot error.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gui/scripts/analyzer.tcl

    r724 r728  
    394394        # Try to create a support ticket for this error.
    395395        # It may be a real problem.
    396         Rappture::bugreport::register "Problem launching job:\n\n$result\n-----\n[$_tool xml xml]"
     396        if {[Rappture::bugreport::shouldReport for jobs]} {
     397            Rappture::bugreport::register "Problem launching job:\n\n$result\n-----\n[$_tool xml xml]"
     398        }
    397399    } else {
    398400        $itk_component(notebook) current analyze
Note: See TracChangeset for help on using the changeset viewer.