Skip to content
This repository was archived by the owner on Apr 25, 2025. It is now read-only.

Commit ec2110a

Browse files
committed
[FAB-8005] Fix CI
Change-Id: I4db638aab4389576c80c6ad8b775c632b7f6fcc4 Signed-off-by: Troy Ronda <troy@troyronda.com>
1 parent 10947da commit ec2110a

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

test/fixtures/config/config_pkcs11_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ client:
4747
timeout:
4848
connection: 3s
4949
queryResponse: 45s
50-
executeTxResponse: 30s
50+
executeTxResponse: 60s
5151
eventService:
5252
timeout:
5353
connection: 3s

test/fixtures/config/config_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ client:
4848
timeout:
4949
connection: 3s
5050
queryResponse: 45s
51-
executeTxResponse: 30s
51+
executeTxResponse: 60s
5252
eventService:
5353
timeout:
5454
connection: 3s

test/fixtures/config/config_test_embedded_pems.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ client:
4848
timeout:
4949
connection: 3s
5050
queryResponse: 45s
51-
executeTxResponse: 30s
51+
executeTxResponse: 60s
5252
eventService:
5353
timeout:
5454
connection: 3s

test/integration/base_test_setup.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ func (setup *BaseSetupImpl) Initialize(t *testing.T) error {
134134
return errors.WithMessage(err, "SaveChannel failed")
135135
}
136136

137-
time.Sleep(time.Second * 3)
137+
time.Sleep(time.Second * 5)
138138

139139
if err = channel.Initialize(nil); err != nil {
140140
return errors.WithMessage(err, "channel init failed")

test/integration/e2e/end_to_end.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ func Run(t *testing.T, configOpt apiconfig.ConfigProvider, sdkOpts ...fabsdk.Opt
6969
}
7070

7171
// Allow orderer to process channel creation
72-
time.Sleep(time.Second * 3)
72+
time.Sleep(time.Second * 5)
7373

7474
// Org resource management client
7575
orgResMgmt, err := sdk.NewClient(fabsdk.WithUser(orgAdmin)).ResourceMgmt()

test/integration/orgs/multiple_orgs_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ func TestOrgsEndToEnd(t *testing.T) {
6969
}
7070

7171
// Allow orderer to process channel creation
72-
time.Sleep(time.Second * 3)
72+
time.Sleep(time.Second * 5)
7373

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

0 commit comments

Comments
 (0)