@@ -789,6 +789,8 @@ void ju_get_opt_field(const nlohmann::json &j, const K &key, machine_runtime_con
789
789
ju_get_opt_field (j[key], " skip_root_hash_store" s, value.skip_root_hash_store , path + to_string (key) + " /" );
790
790
ju_get_opt_field (j[key], " skip_version_check" s, value.skip_version_check , path + to_string (key) + " /" );
791
791
ju_get_opt_field (j[key], " soft_yield" s, value.soft_yield , path + to_string (key) + " /" );
792
+ ju_get_opt_field (j[key], " copy_reflink" s, value.copy_reflink , path + to_string (key) + " /" );
793
+ ju_get_opt_field (j[key], " backing_storage" s, value.backing_storage , path + to_string (key) + " /" );
792
794
}
793
795
794
796
template void ju_get_opt_field<uint64_t >(const nlohmann::json &j, const uint64_t &key, machine_runtime_config &value,
@@ -1971,6 +1973,8 @@ void to_json(nlohmann::json &j, const machine_runtime_config &runtime) {
1971
1973
{" skip_root_hash_store" , runtime.skip_root_hash_store },
1972
1974
{" skip_version_check" , runtime.skip_version_check },
1973
1975
{" soft_yield" , runtime.soft_yield },
1976
+ {" copy_reflink" , runtime.copy_reflink },
1977
+ {" backing_storage" , runtime.backing_storage },
1974
1978
};
1975
1979
}
1976
1980
0 commit comments