From 68af933ff7c82a2e44fb1b796041237c05cd6712 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Tue, 15 Dec 2020 13:47:51 -0800 Subject: [PATCH] modules/console: Add missing node_id to various vmopts. --- modules/console.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/console.cc b/modules/console.cc index cd271db91..71a467ecf 100644 --- a/modules/console.cc +++ b/modules/console.cc @@ -14703,6 +14703,7 @@ console_cmd__fed__state(opt &out, const string_view &line) vmopts.phase.set(m::vm::phase::FETCH_PREV, false); vmopts.phase.set(m::vm::phase::FETCH_STATE, false); vmopts.notify_servers = false; + vmopts.node_id = remote; m::vm::eval { @@ -15088,6 +15089,7 @@ console_cmd__fed__event(opt &out, const string_view &line) vmopts.phase.set(m::vm::phase::WRITE, !has(oparg, "nowrite")); vmopts.replays = has(oparg, "replay"); vmopts.notify_servers = false; + vmopts.node_id = remote; m::vm::eval eval { event, vmopts