Skip to content

Commit 80e4797

Browse files
author
Jason Yellick
committed
[FAB-9702] Orderer defaults to invalid system chan
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 <jyellick@us.ibm.com>
1 parent 8062fa9 commit 80e4797

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

orderer/common/localconfig/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ var Defaults = TopLevel{
161161
ListenPort: 7050,
162162
GenesisMethod: "provisional",
163163
GenesisProfile: "SampleSingleMSPSolo",
164-
SystemChannel: "test_system_channel_name",
164+
SystemChannel: "test-system-channel-name",
165165
GenesisFile: "genesisblock",
166166
Profile: Profile{
167167
Enabled: false,

0 commit comments

Comments
 (0)