tangled
alpha
login
or
join now
back
round
0
view raw
spindle/engines/nixery: make TailStep private
#452
deleted
opened by
winter.bsky.social
5 months ago
targeting
master
from
winter.bsky.social/core
:
push-luoyqwkpromz
It's not in the Engine interface, so no need for this.
Signed-off-by: Winter
winter@winter.cafe
options
unified
split
Changed files
+2
-2
spindle
engines
nixery
engine.go
+2
-2
spindle/engines/nixery/engine.go
···
318
318
// start tailing logs in background
319
319
tailDone := make(chan error, 1)
320
320
go func() {
321
321
-
tailDone <- e.TailStep(ctx, wfLogger, mkExecResp.ID, wid, idx, step)
321
321
+
tailDone <- e.tailStep(ctx, wfLogger, mkExecResp.ID, wid, idx, step)
322
322
}()
323
323
324
324
select {
···
364
364
return nil
365
365
}
366
366
367
367
-
func (e *Engine) TailStep(ctx context.Context, wfLogger *models.WorkflowLogger, execID string, wid models.WorkflowId, stepIdx int, step models.Step) error {
367
367
+
func (e *Engine) tailStep(ctx context.Context, wfLogger *models.WorkflowLogger, execID string, wid models.WorkflowId, stepIdx int, step models.Step) error {
368
368
if wfLogger == nil {
369
369
return nil
370
370
}