Skip to content

Commit

Permalink
[FAB-9702] Orderer defaults to invalid system chan
Browse files Browse the repository at this point in the history
The orderer default channel name for the orderer system channel was
recently modified to be test_orderer_system_channel.  Underscores are
not legal characters in channel IDs though, so the orderer panics at
startup.  This CR simply changes the underscores to dashes.

Change-Id: I4e826a5abc4c0d42cda7e362fbd7a6054c044d23
Signed-off-by: Jason Yellick <[email protected]>
  • Loading branch information
Jason Yellick committed Apr 25, 2018
1 parent 8062fa9 commit 80e4797
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion orderer/common/localconfig/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ var Defaults = TopLevel{
ListenPort: 7050,
GenesisMethod: "provisional",
GenesisProfile: "SampleSingleMSPSolo",
SystemChannel: "test_system_channel_name",
SystemChannel: "test-system-channel-name",
GenesisFile: "genesisblock",
Profile: Profile{
Enabled: false,
Expand Down

0 comments on commit 80e4797

Please sign in to comment.