kopia lustrzana https://github.com/dgtlmoon/changedetection.io
Language fix "watches are rechecking." it actually puts them into an internal queue "watches are QUEUED for rechecking"
rodzic
a580c238b6
commit
eb3dca3805
|
@ -963,7 +963,7 @@ def changedetection_app(config=None, datastore_o=None):
|
|||
if watch_uuid not in running_uuids and not datastore.data['watching'][watch_uuid]['paused']:
|
||||
update_q.put(watch_uuid)
|
||||
i += 1
|
||||
flash("{} watches are rechecking.".format(i))
|
||||
flash("{} watches are queued for rechecking.".format(i))
|
||||
return redirect(url_for('index', tag=tag))
|
||||
|
||||
# @todo handle ctrl break
|
||||
|
|
|
@ -50,7 +50,7 @@ def test_check_basic_change_detection_functionality(client, live_server):
|
|||
|
||||
# Force recheck
|
||||
res = client.get(url_for("api_watch_checknow"), follow_redirects=True)
|
||||
assert b'1 watches are rechecking.' in res.data
|
||||
assert b'1 watches are queued for rechecking.' in res.data
|
||||
|
||||
time.sleep(sleep_time_for_fetch_thread)
|
||||
|
||||
|
|
Ładowanie…
Reference in New Issue