[#164] Add local flag to preset in load

Signed-off-by: Andrey Berezin <a.berezin@yadro.com>
master
Andrey Berezin 2024-01-22 19:06:38 +03:00
parent 328e43fe67
commit e04fac0770
1 changed files with 3 additions and 0 deletions

View File

@ -166,6 +166,9 @@ class Preset:
# Flag to control preset erorrs
ignore_errors: Optional[bool] = metadata_field(all_load_scenarios, "ignore-errors", None, False)
# Flag to ensure created containers store data on local endpoints
local: Optional[bool] = metadata_field(grpc_preset_scenarios, "local", None, False)
@dataclass
class LoadParams: