Skip to content

Commit 69d841f

Browse files
committed
Fix icp > ipc typo in default value.
1 parent bb68681 commit 69d841f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

cmd/chirpstack-gateway-bridge/cmd/root.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ func init() {
4141
viper.SetDefault("backend.semtech_udp.udp_bind", "0.0.0.0:1700")
4242

4343
viper.SetDefault("backend.concentratord.crc_check", true)
44-
viper.SetDefault("backend.concentratord.event_url", "icp:///tmp/concentratord_event")
45-
viper.SetDefault("backend.concentratord.command_url", "icp:///tmp/concentratord_command")
44+
viper.SetDefault("backend.concentratord.event_url", "ipc:///tmp/concentratord_event")
45+
viper.SetDefault("backend.concentratord.command_url", "ipc:///tmp/concentratord_command")
4646

4747
viper.SetDefault("backend.basic_station.bind", ":3001")
4848
viper.SetDefault("backend.basic_station.ping_interval", time.Minute)

docs/content/install/config.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,10 +150,10 @@ type="semtech_udp"
150150
crc_check=true
151151

152152
# Event API URL.
153-
event_url="icp:///tmp/concentratord_event"
153+
event_url="ipc:///tmp/concentratord_event"
154154

155155
# Command API URL.
156-
command_url="icp:///tmp/concentratord_command"
156+
command_url="ipc:///tmp/concentratord_command"
157157

158158

159159
# Basic Station backend.

0 commit comments

Comments
 (0)