You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
logger.Fatal("Failed to enable `Swarm.RelayClient.Enabled`, it requires `Swarm.Transports.Network.Relay` to be true.")
125
+
ifenableRelayClient {
126
+
logger.Fatal("Failed to enable `Swarm.RelayClient`, it requires `Swarm.Transports.Network.Relay` to be true.")
127
127
}
128
128
}
129
129
130
130
// Force users to migrate old config.
131
131
// nolint
132
132
ifcfg.Swarm.DisableRelay {
133
-
logger.Fatal("The 'Swarm.DisableRelay' (Relay V1) config field was removed."+
134
-
"Use the 'Swarm.Transports.Network.Relay' (V2) instead.")
133
+
logger.Fatal("The 'Swarm.DisableRelay' config field was removed."+
134
+
"Use the 'Swarm.Transports.Network.Relay' instead.")
135
135
}
136
136
// nolint
137
137
ifcfg.Swarm.EnableAutoRelay {
138
-
logger.Fatal("The 'Swarm.EnableAutoRelay' (Relay V1) config field was removed."+
139
-
"Use the 'Swarm.RelayClient.Enabled' (V2) instead.")
138
+
logger.Fatal("The 'Swarm.EnableAutoRelay' config field was removed."+
139
+
"Use the 'Swarm.RelayClient.Enabled' instead.")
140
140
}
141
141
// nolint
142
142
ifcfg.Swarm.EnableRelayHop {
143
143
logger.Fatal("The `Swarm.EnableRelayHop` config field was removed.\n"+
144
144
"Use `Swarm.RelayService` to configure the circuit v2 relay.\n"+
145
-
"If you want to continue running a circuit v1 relay, please use the standalone relay daemon: https://github.com/libp2p/go-libp2p-relay-daemon (with RelayV1.Enabled: true)")
145
+
"If you want to continue running a circuit v1 relay, please use the standalone relay daemon: https://dist.ipfs.io/#libp2p-relay-daemon (with RelayV1.Enabled: true)")
0 commit comments