We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 442fcca commit be341dfCopy full SHA for be341df
1 file changed
src/pylontechpoller/poller.py
@@ -150,7 +150,6 @@ def run(argv: list[str]):
150
151
if cc % 1000 == 0:
152
logging.info("Updates submitted since startup: %d", cc)
153
- if cc % 86400 == 0:
154
for reporter in reporters:
155
reporter.cleanup()
156
@@ -162,7 +161,7 @@ def run(argv: list[str]):
162
161
errs += 1
163
logging.error("Exception occured: %s", e)
164
if errs > 10:
165
- logging.error("Too many exceptions in a row, exiting just in casej")
+ logging.error("Too many exceptions in a row, exiting just in case")
166
exit(1)
167
else:
168
time.sleep(args.interval / 1000.0)
0 commit comments