]> git.puffer.fish Git - matthieu/frr.git/commit
tools/frr-reload.py: remove stderr redirects
authorDavid Lamparter <equinox@diac24.net>
Tue, 13 Aug 2019 16:24:11 +0000 (18:24 +0200)
committerDavid Lamparter <equinox@diac24.net>
Fri, 6 Dec 2019 14:13:32 +0000 (15:13 +0100)
commit3fa139a65be70e5a81b5f078530094f09a247416
tree20814dd0c7f78d25632f6ddbd677a895b3bb44bd
parentc572fbfe2d928c275e4dece74e7872f3f87726bd
tools/frr-reload.py: remove stderr redirects

These make no sense.  stderr=subprocess.STDOUT means that vtysh's stdout
and stderr are combined and returned by check_output.  We don't expect
errors in that, and we certainly don't log them.

Leaving vtysh's stderr as stderr is perfectly fine, it'll be captured
for logging just like stderr output from frr-reload.py.

Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
tools/frr-reload.py