Skip to content

Commit 25262dc

Browse files
fix: Updated sleep time (#283)
* Updated sleep time for TestClientSendRetry
1 parent 6b92fa5 commit 25262dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

telemetry/client_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ func TestClientSendRetry(t *testing.T) {
168168
srv := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
169169

170170
if atomic.LoadInt32(&count) == 0 {
171-
time.Sleep(50 * time.Millisecond)
171+
time.Sleep(100 * time.Millisecond)
172172
} else {
173173
assert.Equal(t, r.Method, http.MethodPost)
174174

0 commit comments

Comments
 (0)