Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
dms3
go-dms3
Commits
3ce725dd
Commit
3ce725dd
authored
4 years ago
by
Steven Allen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: upgrade warning to error
parent
a37ff1fe
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
core/node/libp2p/sec.go
core/node/libp2p/sec.go
+1
-2
No files found.
core/node/libp2p/sec.go
View file @
3ce725dd
...
...
@@ -11,8 +11,7 @@ import (
func
Security
(
enabled
bool
,
tptConfig
config
.
Transports
)
interface
{}
{
if
!
enabled
{
return
func
()
(
opts
Libp2pOpts
)
{
// TODO: shouldn't this be Errorf to guarantee visibility?
log
.
Warnf
(
`Your IPFS node has been configured to run WITHOUT ENCRYPTED CONNECTIONS.
log
.
Errorf
(
`Your IPFS node has been configured to run WITHOUT ENCRYPTED CONNECTIONS.
You will not be able to connect to any nodes configured to use encrypted connections`
)
opts
.
Opts
=
append
(
opts
.
Opts
,
libp2p
.
NoSecurity
)
return
opts
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment