This commit is contained in:
Kavinkumar 2022-02-28 18:15:25 +05:30 committed by GitHub
commit 679d10533a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -86,7 +86,9 @@ class Worker:
# Log state transition # Log state transition
if state != old_state: if state != old_state:
if old_state != State.RELOAD_CONFIG: if old_state != State.RELOAD_CONFIG or (
old_state == State.RELOAD_CONFIG and
state != State.RUNNING):
self.freqtrade.notify_status(f'{state.name.lower()}') self.freqtrade.notify_status(f'{state.name.lower()}')
logger.info( logger.info(