diff options
| author | Daniil Baturin <daniil@vyos.io> | 2025-07-31 15:48:37 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-31 15:48:37 +0100 |
| commit | b3c0a8f52409c6c207bfdc74d63a633b9ecd0a4a (patch) | |
| tree | 89c197a57b16af6282711c0d14c68a222d61c936 /src | |
| parent | ec534ec7a0641dd5bfa0b8df7b030aa13c64f66f (diff) | |
| parent | c535f3a8eee7ea63d3d487abb9cb1e6220f345a0 (diff) | |
| download | vyos-1x-b3c0a8f52409c6c207bfdc74d63a633b9ecd0a4a.tar.gz vyos-1x-b3c0a8f52409c6c207bfdc74d63a633b9ecd0a4a.zip | |
Merge pull request #4630 from jestabro/fix-vpp-failure-handler
T7651: VPP use pid not ppid as default in vpp-failure-handler.service script
Diffstat (limited to 'src')
| -rwxr-xr-x | src/helpers/reset_section.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/helpers/reset_section.py b/src/helpers/reset_section.py index 7e464afd5..e57068d45 100755 --- a/src/helpers/reset_section.py +++ b/src/helpers/reset_section.py @@ -84,7 +84,7 @@ else: del test -session_id = int(pid) if pid else os.getppid() +session_id = int(pid) if pid else os.getpid() if in_session: # check hint left by vyshim when ConfigError is from apply stage |
