mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-28 20:27:03 +00:00
On main.cc, we have early commands which want to run prior to initialize Seastar. Currently, perf_fast_forward is breaking this, since it defined "app_template app" on global variable. To avoid that, we should defer running app_template's constructor in scylla_fast_forward_main(). Fixes #13945 Closes #14026