Skip to content

Commit

Permalink
[ADXT-823] Display attempt in "stack up took ..." message (#32690)
Browse files Browse the repository at this point in the history
  • Loading branch information
CelianR authored Jan 7, 2025
1 parent 2c0aedb commit f0700f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/new-e2e/pkg/utils/infra/stack_manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@ func (sm *StackManager) getStack(ctx context.Context, name string, deployFunc pu
upCtx, cancel := context.WithTimeout(ctx, params.UpTimeout)
now := time.Now()
upResult, upError = stack.Up(upCtx, progressStreamsUpOption, optup.DebugLogging(loggingOptions))
fmt.Fprintf(logger, "Stack up took %v\n", time.Since(now))
fmt.Fprintf(logger, "Stack up took %v at attempt %v\n", time.Since(now), upCount)
cancel()

// early return on success
Expand Down

0 comments on commit f0700f0

Please sign in to comment.