mirror of
https://github.com/open-webui/open-webui.git
synced 2026-07-15 21:19:39 -05:00
[GH-ISSUE #16801] issue: Playwright Timeout (ms) interpreted as seconds #121360
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @rawbby on GitHub (Aug 22, 2025).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/16801
Check Existing Issues
Installation Method
Docker
Open WebUI Version
v0.6.23
Ollama Version (if applicable)
No response
Operating System
Debian GNU/Linux 12 (bookworm)
Browser (if applicable)
Firefox 142.0 (64-bit) (Windows 11)
Confirmation
README.md.Expected Behavior
3000ms timeout
Actual Behavior
3000000ms timeout
Steps to Reproduce
Logs & Screenshots
Additional Information
No response
@rgaricano commented on GitHub (Aug 22, 2025):
check your config, in settingsAdmin/Web_Search/Loader/Playwright Engine - Enter Playwright Timeout
@rawbby commented on GitHub (Aug 22, 2025):
I provided a screenshot showing my config, which has a value of 3000, with the label of ms. The logs show that 3000000 is passed as timeout to playwright, which i think should be milliseconds too.
Are you unable to reproduce this behaviour?
@rgaricano commented on GitHub (Aug 22, 2025):
ok, I recheck and I found the issue, the label is incorrect , the unit is seconds. it have to say Timeout (s)
there are a conversion here:
1db8dec4f5/backend/open_webui/retrieval/web/utils.py (L617)@rawbby commented on GitHub (Aug 23, 2025):
I personally think milliseconds are a reasonable choice for the timeout. Maybe the conversion should be fixed, not the label.
This would further not break existing configurations from users that rely on their current config.