Skip to content

Commit 96b29b7

Browse files
heschigopherbot
authored andcommitted
internal/task: remove context timeout
Based on what happened in golang/go#63258, I expect that this will "fix" the problem. Guess we'll see. Fixes golang/go#56231 Change-Id: Id398720effc6a2de4eb67c56663154b082edb109 Reviewed-on: https://go-review.googlesource.com/c/build/+/533098 LUCI-TryBot-Result: Go LUCI <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]> Auto-Submit: Heschi Kreinick <[email protected]>
1 parent 4772d0e commit 96b29b7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

internal/task/tagx_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -462,8 +462,7 @@ func TestTagXRepos(t *testing.T) {
462462
if err != nil {
463463
t.Fatal(err)
464464
}
465-
ctx, cancel := context.WithTimeout(deps.ctx, time.Minute)
466-
defer cancel()
465+
ctx := deps.ctx
467466
_, err = w.Run(ctx, &verboseListener{t: t})
468467
if err != nil {
469468
t.Fatal(err)

0 commit comments

Comments
 (0)