summaryrefslogtreecommitdiff
path: root/ACE/bin
diff options
context:
space:
mode:
authorSon Dinh <dinhs@objectcomputing.com>2022-05-09 14:21:13 -0500
committerSon Dinh <dinhs@objectcomputing.com>2022-05-11 10:18:31 -0500
commit5c90e03d58bffc9e5dd0576fb94267025e720224 (patch)
tree2f1a639c53c34769ccbd676e4d620d1e9c89e802 /ACE/bin
parent54d3360157a533b8e2dcf01e53f0729897541934 (diff)
downloadATCD-5c90e03d58bffc9e5dd0576fb94267025e720224.tar.gz
Return when core files are handled by a dedicated service
Diffstat (limited to 'ACE/bin')
-rw-r--r--ACE/bin/PerlACE/Process_Unix.pm5
1 files changed, 5 insertions, 0 deletions
diff --git a/ACE/bin/PerlACE/Process_Unix.pm b/ACE/bin/PerlACE/Process_Unix.pm
index 714d2a38a14..fd9a6935165 100644
--- a/ACE/bin/PerlACE/Process_Unix.pm
+++ b/ACE/bin/PerlACE/Process_Unix.pm
@@ -586,6 +586,11 @@ sub print_stacktrace_linux
chomp ($line);
close ($pattern_fh);
+ if (index($line, "|") != -1) {
+ print STDERR "WARNING: print_stacktrace_linux: Core files are handled by a separate service. Core pattern: $line\n";
+ return;
+ }
+
# Find the core file from the pattern
my $path = ".";
my $pattern;