apache/superset · error · TemporaryCacheAccessDeniedError
You don't have permission to modify the value.
Error message
You don't have permission to modify the value.
What it means
Error "You don't have permission to modify the value." thrown in apache/superset.
Source
Thrown at superset/commands/dashboard/filter_state/utils.py:35
from superset.commands.dashboard.exceptions import (
DashboardAccessDeniedError,
DashboardNotFoundError,
)
from superset.commands.temporary_cache.exceptions import (
TemporaryCacheAccessDeniedError,
TemporaryCacheResourceNotFoundError,
)
from superset.daos.dashboard import DashboardDAO
def check_access(resource_id: int) -> None:
try:
DashboardDAO.get_by_id_or_slug(str(resource_id))
except DashboardNotFoundError as ex:
raise TemporaryCacheResourceNotFoundError from ex
except DashboardAccessDeniedError as ex:
raise TemporaryCacheAccessDeniedError from ex
View on GitHub (pinned to f4587218dd)
Solutions
- Use the account that owns the dashboard/filter-state value, or request edit access to the dashboard.
When it happens
Trigger: A user without permission attempts to modify a dashboard filter-state value.
Common situations: Deleting/updating dashboard filter state owned by another user without admin rights.
AI-assisted analysis of apache/superset@f4587218dd (2026-08-14).
Data as JSON: /api/errors/04536df1305364da.
Report an issue: GitHub.