mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-20 08:35:09 +00:00
[FAB-15601] BYFN: Fix MAX_RETRY for couchdb
BYFN and Fabcar with couchdb are failing intermittently because CLI sends a request for joining a Channel before a Peer connects to the couchdb. This CR changes the value of MAX_RETRY from 10 to 15 as a workaround. FAB-15601 #done Change-Id: I8d91fa224c585cc52c9dfabebb808b8909253900 Signed-off-by: Yuki Kondo <yuki.kondo@hal.hitachi.com>
This commit is contained in:
parent
0b12e687fb
commit
964c09fe00
1 changed files with 1 additions and 1 deletions
|
|
@ -23,7 +23,7 @@ NO_CHAINCODE="$6"
|
|||
: ${NO_CHAINCODE:="false"}
|
||||
LANGUAGE=`echo "$LANGUAGE" | tr [:upper:] [:lower:]`
|
||||
COUNTER=1
|
||||
MAX_RETRY=10
|
||||
MAX_RETRY=15
|
||||
PACKAGE_ID=""
|
||||
|
||||
if [ "$LANGUAGE" = "node" ]; then
|
||||
|
|
|
|||
Loading…
Reference in a new issue