Exemplo n.º 1
0
Arquivo: s3_test.go Projeto: ncw/goamz
func (s *S) SetUpTest(c *C) {
	attempts := aws.AttemptStrategy{
		Total: 300 * time.Millisecond,
		Delay: 100 * time.Millisecond,
	}
	s3.SetAttemptStrategy(&attempts)
}
Exemplo n.º 2
0
Arquivo: s3_test.go Projeto: ncw/goamz
func (s *S) DisableRetries() {
	s3.SetAttemptStrategy(&aws.AttemptStrategy{})
}
Exemplo n.º 3
0
Arquivo: s3_test.go Projeto: ncw/goamz
func (s *S) TearDownSuite(c *C) {
	s3.SetAttemptStrategy(nil)
	testServer.Stop()
}