HADOOP-15527. Improve delay check for stopping processes. Fixed script location. Contributed by Vinod Kumar Vavilapalli
Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/2d87592f Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/2d87592f Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/2d87592f Branch: refs/heads/HDFS-12943 Commit: 2d87592fc6a56bfe77dd3c11953caea2b701c846 Parents: f386e78 Author: Eric Yang <ey...@apache.org> Authored: Tue Jun 19 13:38:13 2018 -0400 Committer: Eric Yang <ey...@apache.org> Committed: Tue Jun 19 13:38:13 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/2d87592f/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/2d87592f/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: common-commits-unsubscr...@hadoop.apache.org For additional commands, e-mail: common-commits-h...@hadoop.apache.org