Catch retry error in taildrop send
This commit is contained in:
parent
f43a83aad7
commit
cf731fafab
1 changed files with 2 additions and 1 deletions
|
@ -580,7 +580,7 @@ func (s *IntegrationTestSuite) TestTailDrop() {
|
||||||
fmt.Sprintf("/tmp/file_from_%s", hostname),
|
fmt.Sprintf("/tmp/file_from_%s", hostname),
|
||||||
fmt.Sprintf("%s:", ip4),
|
fmt.Sprintf("%s:", ip4),
|
||||||
}
|
}
|
||||||
retry(10, 1*time.Second, func() error {
|
err := retry(10, 1*time.Second, func() error {
|
||||||
log.Printf(
|
log.Printf(
|
||||||
"Sending file from %s to %s\n",
|
"Sending file from %s to %s\n",
|
||||||
hostname,
|
hostname,
|
||||||
|
@ -594,6 +594,7 @@ func (s *IntegrationTestSuite) TestTailDrop() {
|
||||||
)
|
)
|
||||||
return err
|
return err
|
||||||
})
|
})
|
||||||
|
|
||||||
assert.Nil(t, err)
|
assert.Nil(t, err)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue