From 34b856b4753a60da743e81b9b033afab899f7a6b Mon Sep 17 00:00:00 2001 From: Théo de la Hogue Date: Tue, 18 Jun 2024 18:00:28 +0200 Subject: Passing timestamp to send_signal method. --- src/argaze/DataFeatures.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/argaze/DataFeatures.py b/src/argaze/DataFeatures.py index 69599de..2c26c8e 100644 --- a/src/argaze/DataFeatures.py +++ b/src/argaze/DataFeatures.py @@ -1241,7 +1241,7 @@ def PipelineStepMethod(method): self.execution_times[method.__name__] = (time.perf_counter() - start) * 1e3 # Notify observers watching 'on_' signal - self.send_signal(method.__name__, exception) + self.send_signal(method.__name__, timestamp=timestamp, exception=exception) # Raise timestamped exception if exception is not None: -- cgit v1.1