mirror of
https://github.com/langgenius/dify.git
synced 2026-03-06 08:06:37 +08:00
Merge branch '1.11.4-otel-telemetry-ee' into deploy/enterprise
This commit is contained in:
@ -362,6 +362,10 @@ class OpsTraceManager:
|
||||
if app_id is None:
|
||||
return None
|
||||
|
||||
# Handle storage_id format (tenant-{uuid}) - not a real app_id
|
||||
if isinstance(app_id, str) and app_id.startswith("tenant-"):
|
||||
return None
|
||||
|
||||
app: App | None = db.session.query(App).where(App.id == app_id).first()
|
||||
|
||||
if app is None:
|
||||
|
||||
Reference in New Issue
Block a user