mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-20 16:45:09 +00:00
[FAB-6254] Fix the default CLI timeout
The CLI timeout for byfn is currently set to 10000 seconds. This is not a huge issue, but does mean that the CLI will hang around for 10000 seconds after the e2e is complete. This simply changes the default timeout to 10 seconds. Change-Id: Id3abb044ae9385d239af25e63bacb8d4d3ccbf71 Signed-off-by: Gari Singh <gari.r.singh@gmail.com>
This commit is contained in:
parent
b99e1b8da2
commit
f9794a7044
1 changed files with 1 additions and 1 deletions
|
|
@ -305,7 +305,7 @@ function generateChannelArtifacts() {
|
|||
OS_ARCH=$(echo "$(uname -s|tr '[:upper:]' '[:lower:]'|sed 's/mingw64_nt.*/windows/')-$(uname -m | sed 's/x86_64/amd64/g')" | awk '{print tolower($0)}')
|
||||
# timeout duration - the duration the CLI should wait for a response from
|
||||
# another container before giving up
|
||||
CLI_TIMEOUT=10000
|
||||
CLI_TIMEOUT=10
|
||||
#default for delay
|
||||
CLI_DELAY=3
|
||||
# channel name defaults to "mychannel"
|
||||
|
|
|
|||
Loading…
Reference in a new issue