fix: resolve live monitoring bug, remove deprecated parameters, and auto-start Python worker #24
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
This PR addresses three main issues:
--liveflagvolume_modeparameter across the entire codebasedefault_parametersin workflow metadata filesdocker compose upChanges
1. Fixed Live Monitoring Bug
File:
cli/src/fuzzforge_cli/commands/workflow_exec.py:456-458_live_monitor()helper function directlylive_monitor(response.run_id, refresh=3)(passed OptionInfo object)_live_monitor(response.run_id, refresh=3, once=False, style="inline")2. Removed
default_parametersDuplicationFiles: 10 workflow metadata.yaml files
default_parameters:sectionsdefault:fields within parameter definitions3. Removed Deprecated
volume_modeFiles: 26 files across CLI, SDK, backend, AI, and docs
volume_modeparameter (replaced by MinIO storage)4. Python Worker Auto-Start
File:
docker-compose.ymlprofiles:section fromworker-pythonservicedocker compose upTesting
✅ Live monitoring tested:
ff workflow run python_sast . --live- Works without errors✅ Workflow execution tested:
ff workflow run python_sast .- Works without volume_mode✅ All functionality verified: No "Volume Mode: ro" in output, live monitoring displays correctly
Impact