浏览代码

Merge pull request #19471 from thaJeztah/fix-19393-increase-timeout

Fix DockerTrustSuite SetUpTest
Sebastiaan van Stijn 9 年之前
父节点
当前提交
cd1ed858d3
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      integration-cli/trust_server.go

+ 1 - 1
integration-cli/trust_server.go

@@ -106,7 +106,7 @@ func newTestNotary(c *check.C) (*testNotary, error) {
 	}
 	}
 
 
 	// Wait for notary to be ready to serve requests.
 	// Wait for notary to be ready to serve requests.
-	for i := 1; i <= 5; i++ {
+	for i := 1; i <= 20; i++ {
 		if err = testNotary.Ping(); err == nil {
 		if err = testNotary.Ping(); err == nil {
 			break
 			break
 		}
 		}