Block a user
shahondin1624
pushed to refactor/issue-223-base-agent-from-channels at llm-multiverse/llm-multiverse
2026-03-11 13:32:32 +01:00
Refactor: deduplicate make_params test helper across tool-broker executor tests
shahondin1624
deleted branch refactor/issue-224-dedup-make-params from llm-multiverse/llm-multiverse
2026-03-11 13:30:21 +01:00
Refactor: deduplicate make_params test helper across tool-broker executor tests
Fixed in PR #227. Extracted make_params() into a shared test_util module, replacing 6 identical copies.
refactor: deduplicate make_params test helper (#224)
refactor: deduplicate make_params test helper (#224)
shahondin1624
pushed to refactor/issue-224-dedup-make-params at llm-multiverse/llm-multiverse
2026-03-11 13:30:07 +01:00
shahondin1624
created branch refactor/issue-224-dedup-make-params in llm-multiverse/llm-multiverse
2026-03-11 13:30:07 +01:00
Bug: tool-broker uses std::sync::Mutex for audit client instead of tokio::sync::Mutex
shahondin1624
deleted branch bugfix/issue-222-audit-client-mutex from llm-multiverse/llm-multiverse
2026-03-11 13:27:58 +01:00
Bug: tool-broker uses std::sync::Mutex for audit client instead of tokio::sync::Mutex
Fixed in PR #226. Replaced std::sync::Mutex with tokio::sync::Mutex for the audit client field, matching the pattern in all other services.
fix: use tokio::sync::Mutex for tool-broker audit client (#222)
fix: use tokio::sync::Mutex for tool-broker audit client (#222)
shahondin1624
created branch bugfix/issue-222-audit-client-mutex in llm-multiverse/llm-multiverse
2026-03-11 13:27:41 +01:00
shahondin1624
pushed to bugfix/issue-222-audit-client-mutex at llm-multiverse/llm-multiverse
2026-03-11 13:27:41 +01:00
Refactor: extract shared service infrastructure (config, startup, shutdown)
Refactor: extract shared service infrastructure (config, startup, shutdown)
Implemented in PR #225. Created services/common (llm-common) crate with ServiceConfig trait providing default load() and listen_addr() methods, plus shared shutdown_signal(),…