huskies: merge 964

This commit is contained in:
dave
2026-05-13 14:51:39 +00:00
parent c811672e18
commit dcb43c465a
24 changed files with 234 additions and 188 deletions
+3 -3
View File
@@ -363,7 +363,7 @@ async fn ws_handler_forwards_status_events_as_status_update() {
// Use a story ID unique enough that genuine server logs won't match it.
ctx.services.status.publish(StatusEvent::StageTransition {
story_id: "77_story_status_fwd_test".to_string(),
story_name: Some("StatusFwdTest".to_string()),
story_name: "StatusFwdTest".to_string(),
from_stage: "1_backlog".to_string(),
to_stage: "2_current".to_string(),
});
@@ -396,7 +396,7 @@ async fn ws_handler_multi_project_status_isolation() {
let needle = "ProjAIsolation7734";
ctx_a.services.status.publish(StatusEvent::MergeFailure {
story_id: "10_story_proj_a_isolation".to_string(),
story_name: Some(needle.to_string()),
story_name: needle.to_string(),
reason: "conflict".to_string(),
});
@@ -453,7 +453,7 @@ async fn ws_handler_status_consumer_disabled_via_config() {
let needle = "DisabledConsumer9182";
ctx.services.status.publish(StatusEvent::StoryBlocked {
story_id: "55_story_disabled_consumer".to_string(),
story_name: Some(needle.to_string()),
story_name: needle.to_string(),
reason: "test".to_string(),
});