Compare commits

..

18 Commits

Author SHA1 Message Date
dgtlmoon
e3a967db57 Possible RSS watch UUID bugfix 2026-01-13 16:05:57 +01:00
dgtlmoon
13f18dc7ea Extra help 2026-01-13 16:00:45 +01:00
dgtlmoon
8bc99eb0ce Simplify 2026-01-13 15:47:08 +01:00
dgtlmoon
4f2f1e094a Changes to checking state and if jobs are free in tests 2026-01-13 15:44:25 +01:00
dgtlmoon
c58710bf4c test tweak 2026-01-13 15:20:05 +01:00
dgtlmoon
4552ff25b5 Remove problematic github check (worked elsewhere) 2026-01-13 15:11:33 +01:00
dgtlmoon
87bce81d5a hmm 2026-01-13 14:56:59 +01:00
dgtlmoon
170d6652c8 Add note 2026-01-13 14:49:47 +01:00
dgtlmoon
819af84db6 Misc fixes 2026-01-13 14:44:17 +01:00
dgtlmoon
96dfd67633 Adjust test 2026-01-13 14:35:03 +01:00
dgtlmoon
e48ab5afc2 Lazy safety check 2026-01-13 14:22:58 +01:00
dgtlmoon
70a0ee77f0 Improve thread labeling 2026-01-13 14:20:25 +01:00
dgtlmoon
aabe818024 oops 2026-01-13 14:16:34 +01:00
dgtlmoon
95ed02d99e Improve slow worker / async detection 2026-01-13 14:12:52 +01:00
dgtlmoon
380d5862f7 Give threads a useful name for debugging 2026-01-13 14:02:30 +01:00
dgtlmoon
5f6e346a35 Remove thread override, it happens by default 2026-01-13 14:02:13 +01:00
dgtlmoon
41321889bb Async worker updates and increase testing 2026-01-13 13:52:21 +01:00
dgtlmoon
6f37efb0ca Test - Minor changes and strengthen Brotli compression tests 2026-01-13 12:46:46 +01:00
2 changed files with 7 additions and 8 deletions

View File

@@ -2,7 +2,7 @@
# Read more https://github.com/dgtlmoon/changedetection.io/wiki
# Semver means never use .01, or 00. Should be .1.
__version__ = '0.52.2'
__version__ = '0.52.1'
from changedetectionio.strtobool import strtobool
from json.decoder import JSONDecodeError

View File

@@ -25,13 +25,12 @@ def test_content_filter_live_preview(client, live_server, measure_memory_usage,
test_url = url_for('test_endpoint', _external=True)
uuid = client.application.config.get('DATASTORE').add_watch(url=test_url)
res = client.get(url_for("ui.form_watch_checknow"), follow_redirects=True)
assert b'Queued 1 watch for rechecking.' in res.data
wait_for_all_checks(client)
res = client.post(
url_for("ui.ui_views.form_quick_watch_add"),
data={"url": test_url, "tags": ''},
follow_redirects=True
)
uuid = next(iter(live_server.app.config['DATASTORE'].data['watching']))
res = client.post(
url_for("ui.ui_edit.edit_page", uuid=uuid),
data={