We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47383da commit 1a41670Copy full SHA for 1a41670
tools/utils.py
@@ -743,8 +743,11 @@ def CheckLinuxCoreDumpPattern(fatal=False):
743
message = (
744
'Invalid core_pattern configuration. '
745
'The configuration of core dump handling is *not* correct for '
746
- 'a buildbot. The content of {0} must be "{1}" instead of "{2}".'.
747
- format(core_pattern_file, expected_core_pattern, core_pattern))
+ 'a buildbot. The content of {0} must be "{1}" instead of "{2}".'
+ '(see https://github.com/dart-lang/sdk/issues/39662)'.format(
748
+ core_pattern_file, expected_core_pattern, core_pattern))
749
+ # TODO(39662): Remove this once we know why this happens
750
+ fatal = False
751
if fatal:
752
raise Exception(message)
753
else:
0 commit comments