Skip to content

Commit

Permalink
[FAB-8005] Fix CI
Browse files Browse the repository at this point in the history
Change-Id: I4db638aab4389576c80c6ad8b775c632b7f6fcc4
Signed-off-by: Troy Ronda <[email protected]>
  • Loading branch information
troyronda committed Feb 1, 2018
1 parent 10947da commit ec2110a
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion test/fixtures/config/config_pkcs11_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ client:
timeout:
connection: 3s
queryResponse: 45s
executeTxResponse: 30s
executeTxResponse: 60s
eventService:
timeout:
connection: 3s
Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/config/config_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ client:
timeout:
connection: 3s
queryResponse: 45s
executeTxResponse: 30s
executeTxResponse: 60s
eventService:
timeout:
connection: 3s
Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/config/config_test_embedded_pems.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ client:
timeout:
connection: 3s
queryResponse: 45s
executeTxResponse: 30s
executeTxResponse: 60s
eventService:
timeout:
connection: 3s
Expand Down
2 changes: 1 addition & 1 deletion test/integration/base_test_setup.go
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ func (setup *BaseSetupImpl) Initialize(t *testing.T) error {
return errors.WithMessage(err, "SaveChannel failed")
}

time.Sleep(time.Second * 3)
time.Sleep(time.Second * 5)

if err = channel.Initialize(nil); err != nil {
return errors.WithMessage(err, "channel init failed")
Expand Down
2 changes: 1 addition & 1 deletion test/integration/e2e/end_to_end.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ func Run(t *testing.T, configOpt apiconfig.ConfigProvider, sdkOpts ...fabsdk.Opt
}

// Allow orderer to process channel creation
time.Sleep(time.Second * 3)
time.Sleep(time.Second * 5)

// Org resource management client
orgResMgmt, err := sdk.NewClient(fabsdk.WithUser(orgAdmin)).ResourceMgmt()
Expand Down
2 changes: 1 addition & 1 deletion test/integration/orgs/multiple_orgs_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ func TestOrgsEndToEnd(t *testing.T) {
}

// Allow orderer to process channel creation
time.Sleep(time.Second * 3)
time.Sleep(time.Second * 5)

// Org1 resource management client (Org1 is default org)
org1ResMgmt, err := sdk.NewClient(fabsdk.WithUser("Admin")).ResourceMgmt()
Expand Down

0 comments on commit ec2110a

Please sign in to comment.