Skip to content

Commit

Permalink
[FAB-6254] Fix the default CLI timeout
Browse files Browse the repository at this point in the history
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 <gari.r.singh@gmail.com>
  • Loading branch information
mastersingh24 committed Dec 3, 2017
1 parent eeb1b09 commit 69a127e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion first-network/byfn.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 69a127e

Please sign in to comment.