Merge "Neutron: Use the pids subsystem to look up container id"

This commit is contained in:
Zuul 2021-07-07 10:45:31 +00:00 committed by Gerrit Code Review
commit 27ed4d32a7
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ signal_container() {
{% raw -%}
if [ -f /proc/$PID/cgroup ]; then
# Get container ID based on process cgroups
CT_ID=$(awk 'BEGIN {FS="[-.]"} /name=/{print $3}' /proc/$PID/cgroup)
CT_ID=$(awk 'BEGIN {FS="[-.]"} /:pids:/{print $3}' /proc/$PID/cgroup)
CT_NAME=$($CLI inspect -f '{{.Name}}' $CT_ID)
case $SIG in