mirror of https://github.com/waku-org/nwaku.git
Apply keep-alive for chat2 (#525)
This commit is contained in:
parent
f457db9e0a
commit
466f1ecfce
|
@ -249,9 +249,9 @@ proc processInput(rfd: AsyncFD, rng: ref BrHmacDrbgContext) {.async.} =
|
|||
await node.start()
|
||||
|
||||
if conf.filternode != "":
|
||||
node.mountRelay(conf.topics.split(" "), rlnRelayEnabled = conf.rlnrelay)
|
||||
node.mountRelay(conf.topics.split(" "), rlnRelayEnabled = conf.rlnrelay, keepAlive = conf.keepAlive)
|
||||
else:
|
||||
node.mountRelay(@[], rlnRelayEnabled = conf.rlnrelay)
|
||||
node.mountRelay(@[], rlnRelayEnabled = conf.rlnrelay, keepAlive = conf.keepAlive)
|
||||
|
||||
let nick = await readNick(transp)
|
||||
echo "Welcome, " & nick & "!"
|
||||
|
|
Loading…
Reference in New Issue