Skip to content

Commit

Permalink
Fix docker-compose.yml for Test
Browse files Browse the repository at this point in the history
Renames environment variable due to the change at FAB-1241.
As Orderer configuration, General.BatchSize was renamed to
General.BatchMaxMessageCount. Due to this change, running
docker container fails with test/fixtures/docker-compose.yml.
This patch fixes the name in docker-compose.yml.

Change-Id: I9a3827f1f4ce4bfa150c98df50dac3f1aaf9eb73
Signed-off-by: Yuki Kondo <yuki.kondo@hal.hitachi.com>
  • Loading branch information
yuki-kon committed Dec 22, 2016
1 parent ee30425 commit 662135e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/fixtures/docker-compose-marbles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ orderer:
environment:
- ORDERER_GENERAL_LEDGERTYPE=ram
- ORDERER_GENERAL_BATCHTIMEOUT=10s
- ORDERER_GENERAL_BATCHSIZE=2
- ORDERER_GENERAL_MAXMESSAGECOUNT=2
- ORDERER_GENERAL_MAXWINDOWSIZE=1000
- ORDERER_GENERAL_ORDERERTYPE=solo
- ORDERER_GENERAL_LISTENADDRESS=0.0.0.0
Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ services:
environment:
- ORDERER_GENERAL_LEDGERTYPE=ram
- ORDERER_GENERAL_BATCHTIMEOUT=10s
- ORDERER_GENERAL_BATCHSIZE=10
- ORDERER_GENERAL_MAXMESSAGECOUNT=10
- ORDERER_GENERAL_MAXWINDOWSIZE=1000
- ORDERER_GENERAL_LISTENADDRESS=0.0.0.0
- ORDERER_RAMLEDGER_HISTORY_SIZE=100
Expand Down

0 comments on commit 662135e

Please sign in to comment.