Skip to content

Commit

Permalink
fix: increase ticker time for fbc pipeline (#1286)
Browse files Browse the repository at this point in the history
Signed-off-by: Jing Qi <[email protected]>
  • Loading branch information
jinqi7 authored Jul 29, 2024
1 parent 363c095 commit 3f5c75d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/release/pipelines/fbc_release.go
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ func assertBuildPipelineRunSucceeded(devFw framework.Framework, devNamespace, ma
// Create a ticker that ticks every 3 minutes
ticker := time.NewTicker(3 * time.Minute)
// Schedule the stop of the ticker after 5 minutes
time.AfterFunc(5*time.Minute, func() {
time.AfterFunc(10*time.Minute, func() {
ticker.Stop()
fmt.Println("Stopped executing every 3 minutes.")
})
Expand Down

0 comments on commit 3f5c75d

Please sign in to comment.