mirror of
https://github.com/matrix-construct/construct
synced 2025-02-18 17:50:16 +01:00
modules/console: Relax head/history eval opts for manual fed state/backfill.
This commit is contained in:
parent
1217d48fc1
commit
3d056c66d6
1 changed files with 4 additions and 0 deletions
|
@ -2061,6 +2061,8 @@ console_cmd__fed__state(opt &out, const string_view &line)
|
|||
vmopts.non_conform.set(m::event::conforms::MISSING_PREV_STATE);
|
||||
vmopts.non_conform.set(m::event::conforms::MISSING_MEMBERSHIP);
|
||||
vmopts.prev_check_exists = false;
|
||||
vmopts.head_must_exist = false;
|
||||
vmopts.history = false;
|
||||
vmopts.notify = false;
|
||||
m::vm::eval eval
|
||||
{
|
||||
|
@ -2207,6 +2209,8 @@ console_cmd__fed__backfill(opt &out, const string_view &line)
|
|||
vmopts.non_conform.set(m::event::conforms::MISSING_PREV_STATE);
|
||||
vmopts.non_conform.set(m::event::conforms::MISSING_MEMBERSHIP);
|
||||
vmopts.prev_check_exists = false;
|
||||
vmopts.head_must_exist = false;
|
||||
vmopts.history = false;
|
||||
vmopts.notify = false;
|
||||
m::vm::eval eval
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue