Repository: hadoop
Updated Branches:
refs/heads/branch-3.1 68d179795 -> a31a966a2
HADOOP-15527. Improve delay check for stopping processes.
Fixed script location.
Contributed by Vinod Kumar Vavilapalli
(cherry picked from commit 2d87592fc6a56bfe77dd3c11953caea2b701c846)
Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo
Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/a31a966a
Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/a31a966a
Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/a31a966a
Branch: refs/heads/branch-3.1
Commit: a31a966a208d225d5f02592b68ab53fc52e1eb09
Parents: 68d1797
Author: Eric Yang <[email protected]>
Authored: Tue Jun 19 13:38:13 2018 -0400
Committer: Eric Yang <[email protected]>
Committed: Tue Jun 19 13:40:10 2018 -0400
----------------------------------------------------------------------
.../test/scripts/process_with_sigterm_trap.sh | 24 ++++++++++++++++++++
.../test/scripts/process_with_sigterm_trap.sh | 24 --------------------
2 files changed, 24 insertions(+), 24 deletions(-)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/hadoop/blob/a31a966a/hadoop-common-project/hadoop-common/src/test/scripts/process_with_sigterm_trap.sh
----------------------------------------------------------------------
diff --git
a/hadoop-common-project/hadoop-common/src/test/scripts/process_with_sigterm_trap.sh
b/hadoop-common-project/hadoop-common/src/test/scripts/process_with_sigterm_trap.sh
new file mode 100644
index 0000000..d7c7427
--- /dev/null
+++
b/hadoop-common-project/hadoop-common/src/test/scripts/process_with_sigterm_trap.sh
@@ -0,0 +1,24 @@
+#!/usr/bin/env bash
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements. See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+trap "echo SIGTERM trapped!" SIGTERM
+trap "echo SIGINT trapped!" SIGINT
+
+echo "$$" > "$1"
+
+while true; do
+ sleep 1.3
+done
http://git-wip-us.apache.org/repos/asf/hadoop/blob/a31a966a/hadoop-common/src/test/scripts/process_with_sigterm_trap.sh
----------------------------------------------------------------------
diff --git a/hadoop-common/src/test/scripts/process_with_sigterm_trap.sh
b/hadoop-common/src/test/scripts/process_with_sigterm_trap.sh
deleted file mode 100644
index d7c7427..0000000
--- a/hadoop-common/src/test/scripts/process_with_sigterm_trap.sh
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/usr/bin/env bash
-# Licensed to the Apache Software Foundation (ASF) under one or more
-# contributor license agreements. See the NOTICE file distributed with
-# this work for additional information regarding copyright ownership.
-# The ASF licenses this file to You under the Apache License, Version 2.0
-# (the "License"); you may not use this file except in compliance with
-# the License. You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-trap "echo SIGTERM trapped!" SIGTERM
-trap "echo SIGINT trapped!" SIGINT
-
-echo "$$" > "$1"
-
-while true; do
- sleep 1.3
-done
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]