Increase timeout for conf test + more logging for EventGrid. (#666)

This commit is contained in:
Artur Souza 2021-02-07 18:38:49 -08:00 committed by GitHub
parent 33af2809e2
commit 6a26165f92
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -192,7 +192,7 @@ func ConformanceTests(t *testing.T, props map[string]string, inputBinding bindin
select {
case <-readChan:
assert.Greater(t, inputBindingCall, 0)
case <-time.After(defaultTimeoutDuration):
case <-time.After(config.readBindingTimeout):
assert.Greater(t, inputBindingCall, 0)
}
})