Przeglądaj źródła

AMBARI-12923. Prevent accidental kill of program group in Docker.
(David M. Lyle via eyang)

Eric Yang 10 lat temu
rodzic
commit
1e49680b14
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      ambari-server/src/main/python/ambari-server.py

+ 1 - 1
ambari-server/src/main/python/ambari-server.py

@@ -142,7 +142,7 @@ def stop(args):
 
   if status:
     try:
-      os.killpg(os.getpgid(pid), signal.SIGKILL)
+      os.kill(pid, signal.SIGTERM)
     except OSError, e:
       print_info_msg("Unable to stop Ambari Server - " + str(e))
       return