Skip to content

Commit 5320df9

Browse files
committed
Fix: Beacon data reached the limit to hold but daily limit is not
1 parent 73a3bf4 commit 5320df9

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

module/os_ash/ash.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,9 @@ def ash_collect_status(self):
116116
if daily >= 200:
117117
logger.info('Ash beacon fully collected today')
118118
self._ash_fully_collected = True
119+
elif status >= 200:
120+
logger.info('Ash beacon data reached the holding limit')
121+
self._ash_fully_collected = True
119122

120123
if status < 0:
121124
status = 0

0 commit comments

Comments
 (0)