Don't treat finger client disconnect as exception

The fingergw currently logs client disconnects as exceptions.
This makes the log unnecessarily noisy. Just ignore them.

Change-Id: Ic28acabcb47359d4b7077a1eecddefe0f7094212
This commit is contained in:
David Shrewsbury
2018-01-05 11:11:04 -05:00
parent 2af7139e3f
commit 198d9e471b

View File

@@ -77,6 +77,8 @@ class RequestHandler(streamer_utils.BaseFingerRequestHandler):
port_location['port'],
build_uuid,
)
except BrokenPipeError: # Client disconnect
return
except Exception:
self.log.exception('Finger request handling exception:')
msg = 'Internal streaming error'