Fix advanced chat workflow event handler signature mismatch (#25078)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
This commit is contained in:
2
Makefile
2
Makefile
@@ -30,7 +30,7 @@ prepare-web:
|
|||||||
prepare-api:
|
prepare-api:
|
||||||
@echo "🔧 Setting up API environment..."
|
@echo "🔧 Setting up API environment..."
|
||||||
@cp -n api/.env.example api/.env 2>/dev/null || echo "API .env already exists"
|
@cp -n api/.env.example api/.env 2>/dev/null || echo "API .env already exists"
|
||||||
@cd api && uv sync --dev --extra all
|
@cd api && uv sync --dev
|
||||||
@cd api && uv run flask db upgrade
|
@cd api && uv run flask db upgrade
|
||||||
@echo "✅ API environment prepared (not started)"
|
@echo "✅ API environment prepared (not started)"
|
||||||
|
|
||||||
|
@@ -310,7 +310,7 @@ class AdvancedChatAppGenerateTaskPipeline:
|
|||||||
err = self._base_task_pipeline._handle_error(event=event, session=session, message_id=self._message_id)
|
err = self._base_task_pipeline._handle_error(event=event, session=session, message_id=self._message_id)
|
||||||
yield self._base_task_pipeline._error_to_stream_response(err)
|
yield self._base_task_pipeline._error_to_stream_response(err)
|
||||||
|
|
||||||
def _handle_workflow_started_event(self, **kwargs) -> Generator[StreamResponse, None, None]:
|
def _handle_workflow_started_event(self, *args, **kwargs) -> Generator[StreamResponse, None, None]:
|
||||||
"""Handle workflow started events."""
|
"""Handle workflow started events."""
|
||||||
with self._database_session() as session:
|
with self._database_session() as session:
|
||||||
workflow_execution = self._workflow_cycle_manager.handle_workflow_run_start()
|
workflow_execution = self._workflow_cycle_manager.handle_workflow_run_start()
|
||||||
|
@@ -1,7 +1,8 @@
|
|||||||
"""ClickZetta Volume file lifecycle management
|
"""ClickZetta Volume file lifecycle management
|
||||||
|
|
||||||
This module provides file lifecycle management features including version control, automatic cleanup, backup and restore.
|
This module provides file lifecycle management features including version control,
|
||||||
Supports complete lifecycle management for knowledge base files.
|
automatic cleanup, backup and restore. Supports complete lifecycle management for
|
||||||
|
knowledge base files.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import json
|
import json
|
||||||
|
@@ -121,7 +121,8 @@ class VolumePermissionManager:
|
|||||||
|
|
||||||
except Exception:
|
except Exception:
|
||||||
logger.exception("User Volume permission check failed")
|
logger.exception("User Volume permission check failed")
|
||||||
# For User Volume, if permission check fails, it might be a configuration issue, provide friendlier error message
|
# For User Volume, if permission check fails, it might be a configuration issue,
|
||||||
|
# provide friendlier error message
|
||||||
logger.info("User Volume permission check failed, but permission checking is disabled in this version")
|
logger.info("User Volume permission check failed, but permission checking is disabled in this version")
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user