From 33d3e71b20b4a9b9f63ed5598b115ace3966875d Mon Sep 17 00:00:00 2001 From: stroblme Date: Sun, 30 Aug 2026 17:06:07 +0200 Subject: [PATCH] Drop the influx clients nothing ever held `__slots__` and `__init__` carried `_write_client` and `_query_client` as lazy state no method read. Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_01KYM38KSb4V4v2T71eifnZv --- backend/fluksio/flow/nodes/influx.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/backend/fluksio/flow/nodes/influx.py b/backend/fluksio/flow/nodes/influx.py index 08cb4b8..bf28b40 100644 --- a/backend/fluksio/flow/nodes/influx.py +++ b/backend/fluksio/flow/nodes/influx.py @@ -174,8 +174,6 @@ class InfluxDbNode(Node): "timeout", "writes", "queries", - "_write_client", - "_query_client", ) class Params(BaseModel): @@ -231,10 +229,6 @@ class InfluxDbNode(Node): self.writes = cfg.writes self.queries = cfg.queries - # Lazy-initialized clients - self._write_client = None - self._query_client = None - # Set default name if name is None: name = f"influxdb_{self.bucket}"