We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65b4e75 commit a0d4499Copy full SHA for a0d4499
core/clients/key_flow_continuous_refresh_test.go
@@ -422,7 +422,10 @@ func TestContinuousRefreshTokenConcurrency(t *testing.T) {
422
423
// TEST START
424
currentTestPhase = 1
425
- go refresher.continuousRefreshToken()
+ // Ignore returned error as expected in test
426
+ go func() {
427
+ _ = refresher.continuousRefreshToken()
428
+ }()
429
430
// Wait until continuousRefreshToken() is blocked
431
<-chanBlockContinuousRefreshToken
0 commit comments