Skip to content

Commit 6416df2

Browse files
committed
Reduce error retry wait time in inverter controller loop
Adjusted the retry wait duration from 10 minutes to 2 minutes and 30 seconds in case of errors within the inverter's controller loop.
1 parent c954b00 commit 6416df2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/inverter_charge_controller.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def _start(self) -> None:
6969
"""
7070
first_iteration = True
7171
next_price_minimum = None
72-
duration_to_wait_in_cause_of_error = timedelta(minutes=10)
72+
duration_to_wait_in_cause_of_error = timedelta(minutes=2, seconds=30)
7373
while True:
7474
try:
7575
if first_iteration:

0 commit comments

Comments
 (0)