From 69a127e0c71d489a32cdf7a5fd0ce6dcf622c4be Mon Sep 17 00:00:00 2001 From: Gari Singh Date: Sun, 3 Dec 2017 09:36:39 -0500 Subject: [PATCH] [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: I4e163ed248d9e937354e83c0d0143dc6748b6a08 Signed-off-by: Gari Singh --- first-network/byfn.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/first-network/byfn.sh b/first-network/byfn.sh index ec558bd888..0fdceadeec 100755 --- a/first-network/byfn.sh +++ b/first-network/byfn.sh @@ -308,7 +308,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"