diff options
author | Sonic <sonic@dexon.org> | 2019-02-11 18:59:21 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-02-11 18:59:21 +0800 |
commit | 11a54a1d07b3f2dc4ff0ff4586f2bb9c0f3b2904 (patch) | |
tree | 11b5d44c30b11ba38aa9f7523a873c84b62fc481 /p2p | |
parent | ccec7e715e9e31d631668b6ae8451c9ac04f36bd (diff) | |
download | dexon-11a54a1d07b3f2dc4ff0ff4586f2bb9c0f3b2904.tar dexon-11a54a1d07b3f2dc4ff0ff4586f2bb9c0f3b2904.tar.gz dexon-11a54a1d07b3f2dc4ff0ff4586f2bb9c0f3b2904.tar.bz2 dexon-11a54a1d07b3f2dc4ff0ff4586f2bb9c0f3b2904.tar.lz dexon-11a54a1d07b3f2dc4ff0ff4586f2bb9c0f3b2904.tar.xz dexon-11a54a1d07b3f2dc4ff0ff4586f2bb9c0f3b2904.tar.zst dexon-11a54a1d07b3f2dc4ff0ff4586f2bb9c0f3b2904.zip |
p2p, dex: some fixes (#189)
* p2p: try resolving direct dial when dial fail
* dex: avoid concurrent map read and map write
Diffstat (limited to 'p2p')
-rw-r--r-- | p2p/dial.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/p2p/dial.go b/p2p/dial.go index 99acade36..b323bdac1 100644 --- a/p2p/dial.go +++ b/p2p/dial.go @@ -323,7 +323,7 @@ func (t *dialTask) Do(srv *Server) { if err != nil { log.Trace("Dial error", "task", t, "err", err) // Try resolving the ID of static nodes if dialing failed. - if _, ok := err.(*dialError); ok && t.flags&staticDialedConn != 0 { + if _, ok := err.(*dialError); ok && t.flags&(staticDialedConn|directDialedConn) != 0 { if t.resolve(srv) { t.dial(srv, t.dest) } |