forked from TrueCloudLab/frostfs-testlib
[#254] Added change for EC policy
Signed-off-by: Dmitriy Zayakin <d.zayakin@yadro.com>
This commit is contained in:
parent
f4460194bc
commit
376499a7e8
2 changed files with 4 additions and 0 deletions
|
@ -15,6 +15,8 @@ class NetmapParser:
|
||||||
"epoch_duration": r"Epoch duration: (?P<epoch_duration>\d+)",
|
"epoch_duration": r"Epoch duration: (?P<epoch_duration>\d+)",
|
||||||
"inner_ring_candidate_fee": r"Inner Ring candidate fee: (?P<inner_ring_candidate_fee>\d+)",
|
"inner_ring_candidate_fee": r"Inner Ring candidate fee: (?P<inner_ring_candidate_fee>\d+)",
|
||||||
"maximum_object_size": r"Maximum object size: (?P<maximum_object_size>\d+)",
|
"maximum_object_size": r"Maximum object size: (?P<maximum_object_size>\d+)",
|
||||||
|
"maximum_count_of_data_shards": r"Maximum count of data shards: (?P<maximum_count_of_data_shards>\d+)",
|
||||||
|
"maximum_count_of_parity_shards": r"Maximum count of parity shards: (?P<maximum_count_of_parity_shards>\d+)",
|
||||||
"withdrawal_fee": r"Withdrawal fee: (?P<withdrawal_fee>\d+)",
|
"withdrawal_fee": r"Withdrawal fee: (?P<withdrawal_fee>\d+)",
|
||||||
"homomorphic_hashing_disabled": r"Homomorphic hashing disabled: (?P<homomorphic_hashing_disabled>true|false)",
|
"homomorphic_hashing_disabled": r"Homomorphic hashing disabled: (?P<homomorphic_hashing_disabled>true|false)",
|
||||||
"maintenance_mode_allowed": r"Maintenance mode allowed: (?P<maintenance_mode_allowed>true|false)",
|
"maintenance_mode_allowed": r"Maintenance mode allowed: (?P<maintenance_mode_allowed>true|false)",
|
||||||
|
|
|
@ -70,6 +70,8 @@ class NodeNetInfo:
|
||||||
epoch_duration: str = None
|
epoch_duration: str = None
|
||||||
inner_ring_candidate_fee: str = None
|
inner_ring_candidate_fee: str = None
|
||||||
maximum_object_size: str = None
|
maximum_object_size: str = None
|
||||||
|
maximum_count_of_data_shards: str = None
|
||||||
|
maximum_count_of_parity_shards: str = None
|
||||||
withdrawal_fee: str = None
|
withdrawal_fee: str = None
|
||||||
homomorphic_hashing_disabled: str = None
|
homomorphic_hashing_disabled: str = None
|
||||||
maintenance_mode_allowed: str = None
|
maintenance_mode_allowed: str = None
|
||||||
|
|
Loading…
Reference in a new issue