We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 744851b commit e07b232Copy full SHA for e07b232
instrumentation/opentelemetry-instrumentation-dbapi/src/opentelemetry/instrumentation/dbapi/__init__.py
@@ -324,6 +324,10 @@ def get_traced_connection_proxy(
324
# pylint: disable=abstract-method
325
class TracedConnectionProxy(type(connection), _TracedConnectionProxy):
326
def __init__(self, connection):
327
+ self._sock = connection._sock
328
+ self._auth_plugin_name = connection._auth_plugin_name
329
+ self._closed = connection._closed
330
+ self._secure = connection._secure
331
self._connection = connection
332
333
def __getattr__(self, name):
0 commit comments