Monorepo for Tangled
0

Configure Feed

Select the types of activity you want to include in your feed.

spindle/xrpc: add debug logs on `cancelPipeline`

Signed-off-by: Seongmin Lee <git@boltless.me>

Seongmin Lee (Jul 17, 2026, 12:45 AM +0900) ef8ec7de 1ee613c4

+8
+8
spindle/xrpc/pipeline_cancel_pipeline.go
··· 64 64 Knot: repo.Knot, 65 65 Rkey: pipelineTid.String(), 66 66 } 67 + l = l.With("input.pipeline", pipelineTid, "input.workflows", input.Workflows) 67 68 68 69 workflows := input.Workflows 69 70 if len(workflows) == 0 { ··· 72 73 workflows = append(workflows, w.Name) 73 74 } 74 75 } 76 + 77 + canceled := false 78 + defer func() { 79 + l.Debug("canceled pipeline", "canceled", canceled) 80 + }() 75 81 76 82 for _, wName := range workflows { 77 83 wid := models.WorkflowId{ ··· 94 100 } 95 101 } 96 102 } 103 + 104 + canceled = true 97 105 98 106 w.WriteHeader(http.StatusOK) 99 107 }