Azure / GuestProxyAgent

MIT License
3 stars 10 forks source link

handle ignored return values #119

Closed ZhidongPeng closed 2 months ago

ZhidongPeng commented 2 months ago

This PR is addressing the first feedback from https://github.com/Azure/GuestProxyAgent/issues/117

There seem to be quite a few places there's _ = fallible_func() is used, unexpectedly preventing error propagation. Whilst this may be okay in tests, it's definitely a code smell in general