mirror of
https://github.com/restic/restic.git
synced 2025-08-26 12:47:42 +00:00
backend/retry: hide final log for stat()
method
stat is only used to check the config file's existence. We don't want log output in this case.
This commit is contained in:
@@ -400,7 +400,11 @@ func TestBackendStatNotExists(t *testing.T) {
|
||||
}
|
||||
|
||||
TestFastRetries(t)
|
||||
retryBackend := New(be, 10, nil, nil)
|
||||
retryBackend := New(be, 10, func(s string, err error, d time.Duration) {
|
||||
t.Fatalf("unexpected error output %v", s)
|
||||
}, func(s string, i int) {
|
||||
t.Fatalf("unexpected log output %v", s)
|
||||
})
|
||||
|
||||
_, err := retryBackend.Stat(context.TODO(), backend.Handle{})
|
||||
test.Assert(t, be.IsNotExistFn(err), "unexpected error %v", err)
|
||||
|
Reference in New Issue
Block a user