Skip to content

Commit

Permalink
Fix PeerExchange rpc decode in order not to take response's status_co…
Browse files Browse the repository at this point in the history
…de mandatory - for support old protocol implementation (#3059)
  • Loading branch information
NagyZoltanPeter authored Sep 25, 2024
1 parent 9b445ac commit 5afa9b1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 3 additions & 1 deletion waku/waku_peer_exchange/protocol.nim
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,9 @@ proc populateEnrCache(wpx: WakuPeerExchange) =

proc updatePxEnrCache(wpx: WakuPeerExchange) {.async.} =
# try more aggressively to fill the cache at startup
while wpx.enrCache.len < MaxPeersCacheSize:
var attempts = 10
while wpx.enrCache.len < MaxPeersCacheSize and attempts > 0:
attempts -= 1
wpx.populateEnrCache()
await sleepAsync(5.seconds)

Expand Down
6 changes: 5 additions & 1 deletion waku/waku_peer_exchange/rpc_codec.nim
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,11 @@ proc decode*(T: type PeerExchangeResponse, buffer: seq[byte]): ProtobufResult[T]
if ?pb.getField(10, status_code):
rpc.status_code = PeerExchangeResponseStatusCode.parse(status_code)
else:
return err(ProtobufError.missingRequiredField("status_code"))
# older peers may not support status_code field yet
if rpc.peerInfos.len() > 0:
rpc.status_code = PeerExchangeResponseStatusCode.SUCCESS
else:
rpc.status_code = PeerExchangeResponseStatusCode.SERVICE_UNAVAILABLE

var status_desc: string
if ?pb.getField(11, status_desc):
Expand Down

0 comments on commit 5afa9b1

Please sign in to comment.