mirror of
https://github.com/open-webui/open-webui.git
synced 2026-05-08 04:16:03 -05:00
[GH-ISSUE #21166] issue: Unawaited coroutine '_verify_ssl_cert' breaks web retrieval in utils.py #58074
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 @TheSpaceGod on GitHub (Feb 4, 2026).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/21166
Check Existing Issues
Installation Method
Docker
Open WebUI Version
7.2
Ollama Version (if applicable)
No response
Operating System
Linux
Browser (if applicable)
No response
Confirmation
README.md.Expected Behavior
Webpage attachment should grab text based context on webpage via playwrite.
Actual Behavior
Description:
I have identified a blocking bug in
open_webui/retrieval/web/utils.pythat prevents web retrieval from working correctly. The_verify_ssl_certfunction is a coroutine but is called synchronously, resulting in aRuntimeWarningand causing the scraper to abort after fetching only metadata (approx. 3 lines).Location:
File:
/app/backend/open_webui/retrieval/web/utils.pyLine:
177(approximate, based on logs)Logs:
Root Cause:
The code attempts to evaluate
self._verify_ssl_cert(url)withoutawait.Proposed Fix:
Change:
To:
Environment:
Steps to Reproduce
Logs & Screenshots
Additional Information
No response
@owui-terminator[bot] commented on GitHub (Feb 4, 2026):
🔍 Similar Issues Found
I found some existing issues that might be related to this one. Please check if any of these are duplicates or contain helpful solutions:
by Lemmons • Jan 20, 2026 •
bug💡 Tips:
This comment was generated automatically by a bot. Please react with a 👍 if this comment was helpful, or a 👎 if it was not.
@tjbck commented on GitHub (Feb 5, 2026):
Addressed in dev.