Skip to content

Commit 559bc6d

Browse files
committed
dont log saslserver exception
1 parent eb7b817 commit 559bc6d

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

tests/catalog/test_hive.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
# pylint: disable=protected-access,redefined-outer-name
1818
import base64
1919
import copy
20-
import logging
2120
import struct
2221
import threading
2322
import uuid
@@ -221,9 +220,7 @@ def run(self) -> None:
221220
client.write(self._response)
222221
client.flush()
223222
except Exception:
224-
logging.exception(
225-
"An error occurred while responding to client",
226-
)
223+
pass
227224

228225
@property
229226
def port(self) -> Optional[int]:

0 commit comments

Comments
 (0)