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 0431544 commit cbdccb7Copy full SHA for cbdccb7
main.py
@@ -63,12 +63,6 @@ def _update_run_number(self, value: int) -> None:
63
logger.info(f"Run number updated to {value}")
64
self.current_run_number = value
65
66
- def _update_start_time_ms(self, value: int) -> None:
67
- # Cache this as we want the run start message construction and production to be as fast as
68
- # possible so we don't miss events
69
- logger.info(f"Run start time updated to {value} so changing it to ms ({value * 1000})")
70
- self.current_start_time_ms = int(value) * 1000
71
-
72
def _update_blocks(self, value: ca_bytes) -> None:
73
logger.debug(f"blocks_hexed: {value}")
74
blocks_unhexed = dehex_decompress_and_dejson(bytes(value))
0 commit comments