mirror of
https://github.com/open-webui/open-webui.git
synced 2026-05-06 10:58:17 -05:00
issue: Blank Page Displayed During OAuth Login on Pending Page #4758
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 @patrick517 on GitHub (Apr 8, 2025).
Check Existing Issues
Installation Method
Docker
Open WebUI Version
v0.6.2
Ollama Version (if applicable)
0.6.4
Operating System
Rocky Linux 9.5
Browser (if applicable)
Chrome, Edge, Firefox, Safari
Confirmation
README.md.Expected Behavior
Actual Behavior
Steps to Reproduce
Logs & Screenshots
Additional Information
No response
@pavelzamyatin commented on GitHub (Apr 8, 2025):
Same here. v0.6.2, Docker, Chrome.
@BerkayOzb commented on GitHub (Apr 8, 2025):
you need to change src/lib/components/chat/ToolServersModal.svelte file.
on 18th line
$: selectedTools = $tools.filter((tool) => selectedToolIds.includes(tool.id)); to ->
$: selectedTools = ($tools ?? []).filter((tool) => selectedToolIds.includes(tool.id));
@Krzysi3k commented on GitHub (Apr 8, 2025):
from my observation call to:
/modelstakes long time@tjbck commented on GitHub (Apr 8, 2025):
@Krzysi3k There are many existing discussions regarding this. This is an architectural decision.
Related: https://docs.openwebui.com/getting-started/env-configuration#aiohttp_client_timeout_model_list
@chalitbkb commented on GitHub (Apr 9, 2025):
@Krzysi3k @tjbck
https://github.com/open-webui/open-webui/issues/12164 Same problem. I believe there's another hidden process at play. However, when I switched to using SQLite, I didn't encounter any issues, which suggests that another process might be lurking. Nevertheless, using SQLite doesn't automatically free up space, even after deleting chat history or removing all uploaded documents from the system. It seems that OpenWebUI hasn't addressed this bug yet. From my tests, using Vacuum to manage it can resolve this issue. Related : https://github.com/open-webui/open-webui/discussions/12249
It's surprising that SQLite doesn't require the "AIOHTTP_CLIENT_TIMEOUT_MODEL_LIST" setting because requests to ./models are fast and well-balanced. In contrast, using other databases results in slower requests to /models, necessitating the configuration of "AIOHTTP_CLIENT_TIMEOUT_MODEL_LIST" to reduce this delay.
@badgerhill commented on GitHub (Apr 9, 2025):
i had the same issue. problem was/is, that the newly created user has the role "pending". If i change the users role to user, i can log in fine using sso.