Skip to content

Commit e32eaa3

Browse files
author
Test User
committed
Merge remote-tracking branch 'gitea/task/2715-raise-disk-threshold'
2 parents 53e1094 + 9288efb commit e32eaa3

6 files changed

Lines changed: 27 additions & 5 deletions

File tree

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Session: fix(adf): raise disk_usage_threshold from 90 to 95
2+
3+
**Agent**: implementation-swarm (Echo, Twin Maintainer)
4+
**Issue**: #2715
5+
**Start**: 2026-06-18 06:03 CEST
6+
**Branch**: task/2715-raise-disk-threshold
7+
8+
## Task
9+
Raise disk_usage_threshold from hardcoded 90 to 95 in:
10+
- crates/terraphim_orchestrator/src/bin/adf.rs (lines 258, 361, 483, 602)
11+
- crates/terraphim_orchestrator/src/agent_run_command.rs
12+
- crates/terraphim_orchestrator/src/project_adf.rs
13+
14+
## Subtasks
15+
1. [S] Verify file locations and line numbers match issue
16+
2. [S] Replace all 90 -> 95 in production sites (not tests)
17+
3. [S] cargo fmt + clippy check
18+
4. [S] cargo test -p terraphim_orchestrator
19+
5. [S] Commit + PR
20+
21+
## Status
22+
In progress

.terraphim/orchestrator.toml.bigbox

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
disk_usage_threshold = 90
1+
disk_usage_threshold = 95
22
flow_state_dir = "/opt/ai-dark-factory/flow-states"
33
max_restart_count = 3
44
persona_data_dir = "/data/projects/terraphim/terraphim-ai/data/personas"

scripts/adf-setup/scripts/adf-setup/orchestrator.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
disk_usage_threshold = 90
1+
disk_usage_threshold = 95
22
flow_state_dir = "/opt/ai-dark-factory/flow-states"
33
max_restart_count = 3
44
persona_data_dir = "/home/alex/projects/terraphim/terraphim-ai/data/personas"

scripts/adf-setup/tests/expected/orchestrator.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
disk_usage_threshold = 90
1+
disk_usage_threshold = 95
22
flow_state_dir = "/opt/ai-dark-factory/flow-states"
33
max_restart_count = 3
44
persona_data_dir = "/home/alex/projects/terraphim/terraphim-ai/data/personas"

scripts/adf-setup/tests/fixtures/odilo-orchestrator.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
working_dir = "/home/alex/projects/odilo"
33
restart_cooldown_secs = 300
44
max_restart_count = 3
5-
disk_usage_threshold = 90
5+
disk_usage_threshold = 95
66
tick_interval_secs = 60
77
persona_data_dir = "/home/alex/projects/terraphim/terraphim-ai/data/personas"
88

scripts/adf-setup/tests/fixtures/orchestrator.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
working_dir = "/home/alex/projects/terraphim/terraphim-ai"
33
restart_cooldown_secs = 300
44
max_restart_count = 3
5-
disk_usage_threshold = 90
5+
disk_usage_threshold = 95
66
tick_interval_secs = 30
77
persona_data_dir = "/home/alex/projects/terraphim/terraphim-ai/data/personas"
88
skill_data_dir = "/opt/ai-dark-factory/skills"

0 commit comments

Comments
 (0)