We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4188bfc commit 52f518bCopy full SHA for 52f518b
pymodbus/client/base.py
@@ -122,11 +122,7 @@ def __init__( # pylint: disable=too-many-arguments
122
# Common variables.
123
self.framer = framer(ClientDecoder(), self)
124
self.transaction = DictTransactionManager(
125
- self,
126
- retries=retries,
127
- retry_on_empty=retry_on_empty,
128
- reset_socket=self.params.close_comm_on_error,
129
- **kwargs,
+ self, retries=retries, retry_on_empty=retry_on_empty, **kwargs
130
)
131
self.reconnect_delay = self.params.reconnect_delay
132
self.reconnect_delay_current = self.params.reconnect_delay
0 commit comments